0
while True: num = input('Enter age for all users separated by a comma: ') n = num.split(',') print(n) if len(n)
Pls how do I end this while true statement from repeating
2 Réponses
0
You don't need while line.
0
Make True a variable, so you can change it inside the loop to break out of the loop