如何通过真正简单的方法获取从用户输入中输入的变量的值?

时间:2019-03-22 16:38:16

标签: python variables integer output

我想编写一段重复输入的代码,直到用户正确输入您的名字为止。用户输入特定名称后,请打印肯定的消息以祝贺用户。如果不是,它将再次询问,直到用户输入名称为止。

1 个答案:

答案 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')