#title:collect name #author:kaio #date:24/06/25 #version:v1 #purpose:to collect a name # Ask the user for their name name = input("Please enter your name: ").strip() # Check if the name is empty or contains only whitespace if not name: print("No name entered") else: print(f"Welcome: {name}") # Indicate that the program has ended print("The program has ended")