Answer on question #66545- Programming & Computer Science / Python
id = "12345"
while True:
s = input().strip()
if s == id:
print("This is your ID number: " + s)
break
print("This is not your ID number.")Answer provided by www.AssignmentExpert.com
Comments