Write a program to take user’s name as input and print the input along with the greeting 100 times.
Answers
Answered by
1
def greet():
name = input("Enter the name:")
for i in range (0,101):
print(name, " Good morning")
print("bye")
hope it helped u
Similar questions