#Title: Collect User Name #Author: Damian Clark #Date: 23/06/25 #Version: Version 1 #Purpose: Ask for the user’s name if the input is blank or empty. #Tell: the operator with the program is about name = input('What is your name? ') if name == 'Bob': print('Welcome Bob') else: print('No name entered') #Tell the user the program has ended print('The program has ended.')