#Title:Collect User Name #Author:Judas Palmer #Date:19/6/26 #Version:1 #Purpose:giving a welcome message to someone if they typed in they typed in their name greet them by there name = input('What is your name? ') if name == '': print('No name entered') else: print(f'Welcome {name}') print('The program has ended')