#Loop practise V2 #Author; Tyler Agnew #Date:11/11/25 #purpose:create a loop that doesn't repeat forever name=input("What is your name?") for xyz in range(3): print(f'welcome {name} to the loop program') print('This program has ended')