After breaking a statement,, how to you make your code start reading from next line
User1 = input("Enter your Name: ") User2 = input("Enter your Name: ") User3= input("Enter your Name:") User4= input("Enter your Name: ") User5 = input("Enter your Name:") street = input("Enter your Date of birth: ") street = input("Enter your Date of birth: ") street = input("Enter your Date of birth: ") street = input("Enter your Date of birth: ") street = input("Enter your Date of birth: ") while True: num = input('Enter age for all users separated by a comma: ') n = num.split(',') print(n) if len(n) >=2: for i in range(len(n)): highest = max(n) lowest = min(n) print('Oldest person: ' + highest) print('youngest person: ' + lowest) else: print("Please, at least enter 2 numbers separated by ','") break