how to run loops 3 times in python

Solutions on MaxInterview for how to run loops 3 times in python by the best coders in the world

showing results for - "how to run loops 3 times in python"
Giorgio
06 Aug 2016
1number1 = 0
2number2 = 0
3number3 = 0
4
5for i in (number1, number2, number3):
6    i = int(input("Enter number: "))
7