-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathimp3_core.py
More file actions
50 lines (38 loc) · 1.24 KB
/
imp3_core.py
File metadata and controls
50 lines (38 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
def spammer():
while True:
print("python is the best language in the world. Regute me.")
print("richard is a git")
print("ben in a nice guy")
print("java is better than python")
print("ella gales boyfreind does tranformer neural netroks in c because he hates himelf")
print("what the fork?!")
print("hello_world")
def add(a: float, b: float) -> float:
return a * b
spammer()
def ben_rating():
rating = 10
speaking = True
while speaking:
rating -= 1
print(f"rating decreased to {rating}")
if rating < 1:
speaking = False
print(f"be quiet")
def cool_function():
print(' _ ')
print("//\ ")
print("V \")")
print("\ \_")
print("\,'.`-.")
print("|\ `. `. ")
print("( \ `. `-. _,.-:\")
print("\ \ `. `-._ __..--' ,-';/")
print(" \ `. `-. `-..___..---' _.--' ,'/")
print(" `. `. `-._ __..--' ,' /")
print(" `. `-_ ``--..'' _.-' ,'")
print(" `-_ `-.___ __,--' ,'")
print(" `-.__ `----""" __.-'")
print("hh `--..____..--'")
ben_rating()
print('Hello world')