import math
import time
import re

pypy_msg = {"incorrect": "fuck off, that is incorrect",
"correct": "welcome again pypy!"}

start_time = time.time()


def pypy(p, y):
"""
oh shit shit that all :D
:param p: p is p
:param y: also y is p
"""
if p != 'p' or y != 'y':
print(pypy_msg["incorrect"])
else:
print(pypy_msg["correct"])


input_data = input("pypy? ")

if input_data == "pypy":
pypy(input_data[0], input_data[-1])
else:
print("that is not a pypy..")

pies = ["p", "y"]

for i in pies:
pie_line = ""
for j in range(False, 10):
pie_line += str(math.pow(j / time.time(), math.radians(5))) + i
print(pie_line)

i = 0
while i != 3:
i += 1
print(i)

matcher = re.match('^([^\s]+) off', pypy_msg["incorrect"])
print("i wanna", matcher.group(1).upper(), "you")

print("running time : ", time.time() - start_time)


오우예 튜토리얼의 모든것이 들어있다.


이젠뭐하지