#Title: Collect name #Author: Tre Woods #Date: 12/06/2026 #Version: 1 #Purpose: Ask what your name is then the user will be welcomed. #if you did not write anything it would say "no name entered" name = input("What is your name? ") if name == "": print("No name entered") print("The program has ended") else: print("Welcome" name) print("The program has ended")