Question #112837

write a program that uses input to prompt a user for their name

Expert's answer

while True:
    # Prompt user to enter their name
    name = input('Enter your name: ')
    
    # Name field cannot be empty
    if len(name) > 0:
        break
    else:
        print('Field cannot be empty. Try again...')
LATEST TUTORIALS
APPROVED BY CLIENTS