mirror of
https://git.erg.school/P039/art_num_2024.git
synced 2026-02-04 04:59:18 +01:00
13 lines
162 B
Python
13 lines
162 B
Python
from time import sleep
|
|
|
|
love = True
|
|
how = "so"
|
|
|
|
def missing(so):
|
|
print(f"I miss you {so} much")
|
|
|
|
while love:
|
|
missing(how)
|
|
how += " so"
|
|
sleep(0.2)
|