Answer to Question #67521 in Python for Juan

Question #67521
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')

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS