cs50/src6/1/meow5.py

14 lines
158 B
Python

# Abstraction with parameterization
def main():
meow(3)
# Meow some number of times
def meow(n):
for i in range(n):
print("meow")
main()