0
How to make a python code that will ask user the number of printing word "eggs"and then print the word "eggs" as much times?
How to make a python code that will ask user the number of times that user wants to print word "eggs"and then print the word "eggs" as much times as the number inserted?thank you
3 Answers
+ 3
n=int(input("enter no. of times::"))
print ("eggs"*n)
+ 2
Get input. Use a for loop to iterate between 0 and the input and print eggs each time.
+ 2
for i in range(int(input()):
print("eggs")