cs50/meow.py

8 lines
98 B
Python

def main():
meow(30)
def meow(n):
for i in range(n):
print(f"{i}: Meow!")
main()