198k views
2 votes
Create a program that prompts the user for how old they are turning, and then, using a loop, outputs a virtual cookie for every year old they are.

Create a program that prompts the user for how old they are turning, and then, using-example-1
User Gouki
by
4.6k points

1 Answer

7 votes

Answer:

age = int(input('How old are you turning? '))

for i in range(age):

print('(::)')

User Kireeti K
by
4.6k points