# this program uses a for loop to repeat name = input("What is your name? ") xyz=1 for xyz in range(3): print(f" Greetings {name}") xyz += 1 print (f"The program has printed your name {xyz} times") print ("The program has ended")