我想编写一段重复输入的代码,直到用户正确输入您的名字为止。用户输入特定名称后,请打印肯定的消息以祝贺用户。如果不是,它将再次询问,直到用户输入名称为止。
答案 0 :(得分:0)
correct_name = 'John'
print('Enter your first name:')
name = input()
while name != correct_name:
print('Incorrect. Please enter your first name:')
name = input()
print('Correct')