Duplicate input call
examples/loops/duplicate_input_call.py
id_str = input("Type in your ID: ") while len(id_str) != 9: id_str = input("Type in your ID") print("Your ID is " + id_str)
id_str = input("Type in your ID: ") while len(id_str) != 9: id_str = input("Type in your ID") print("Your ID is " + id_str)