write a program that uses input to prompt a user for their name
1
Expert's answer
2020-04-29T13:58:10-0400
whileTrue:
# Prompt user to enter their name
name = input('Enter your name: ')
# Name field cannot be emptyiflen(name) > 0:
breakelse:
print('Field cannot be empty. Try again...')
The expert did excellent work as usual and was extremely helpful for me.
"Assignmentexpert.com" has experienced experts and professional in the market. Thanks.
Comments