#Title:Collect Name #Author: Jack Austin #Date: 23/06/2026 #Version: 2 #Purpose: Ask what your name is then the user will be welcomed #if you type blank it will say no nme entered name = input("What is your name? ") if name == "": print("No name entered") print ("The program has ended") else: print(f"Welcome {name}") print ("The program has ended")