Duplicate input call



examples/loops/duplicate_input_call_with_if.py
id_str = input("Type in your ID: ")

if len(id_str) != 9:
   id_str = input("Type in your ID")

print("Your ID is " + id_str)