#Title: Collect User Name #Author: Alex Asher #Date: 26/06/24 #Version: Version1.0 #Purpose: The purpose of this program is to collects usernames name = input("What is your name? ") if name == '': print("No name entered") else: print(f"Welcome {name}") print("The program has ended")