This repository has been archived on 2026-03-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
milk/main.py
2023-02-14 23:46:02 +03:00

19 lines
313 B
Python

from time import sleep
def main():
i = 0
print("Milk", end='')
while True:
if i % 10 == 0:
print(" inside a bag of\n\nMilk", end='')
elif i % 2 == 0:
print(" inside a bag of\nMilk", end='')
else:
print(" outside a bag of\nMilk", end='')
sleep(1)
i += 1
if __name__ == '__main__':
main()