how can i increase number in input statement in python 3f

Solutions on MaxInterview for how can i increase number in input statement in python 3f by the best coders in the world

showing results for - "how can i increase number in input statement in python 3f"
Jorge
30 Mar 2018
1#     The most easist way imade it my self : */
2  
3#   imports: 
4import itertools
5
6# the loop you can also copy this 
7while True:
8    for i in itertools.count(start=1):
9      
10        add = ">>>"
11
12        main = i * 1
13
14        input(str(main) + " " + add)
15        
16        
17# Thank You
18  
similar questions