# Title: user_name # Author: Hailey Lau # Date: 17/06/25 # Version: Version 1 # Purpose: This program's purpose is to welcome the user if the user enters its name. # Ask for data name = input('What is your name? ') # Applying the data if name == '': print('No name entered') else: print(f'Welcome {name}') # Informing the user that the program has ended print('The program has ended')