#Title: User name #Author: Julio Ribeiro #Date: 18/06/2025 #Version: Version 1 #Purpose: This program will ask the user for their name then it will print 'Welcome (name)' if no name is entered it will print 'No name entered' then the program will warn the user the program has ended name = input('What is your name? ') if name == '' : print('No name entered') else: print(f'Welcome {name}') print('The program has ended')