#Title: Collecting user name #Author: Josie Crowder #Date: 18/11/25 #Version: 1 #Purpose: This program is to ask for a users name and give a specific answer depending if the question was answered or not. name = input("What is your name? ") if name == "": print("No name entered") else: print(f"Welcome {name}") print("The program has ended")