You have a unique ID number, which is represented by the variable id, containing a string of numbers. Write a program that continuously takes strings to standard input. If the string is not your ID number, print "This is not your ID number." If it is, print "This is your ID number: " followed by the number, and terminate the loop.
1
Expert's answer
2017-04-20T12:06:04-0400
_id = '3824768933478627'
while True: ___if input('Input ID: ') == _id: ______print('This is your ID number:', _id) ______break __else: ______print('This is not your ID number')
Comments
Leave a comment