# Title: Collect User Name # Author: Stefanie Remondavia # Date: 17/06/25 # Version: Version 1 # Purpose: The purpose of this code is to help the person asking know the other person's name # asking the person's name name = input('What is your name? ') # applying answers if name == '' : print('No name entered ') else: print(f'Welcome {name} ') # telling the person the program has ended print('The program has ended ')