Answers for "How can I increase number in input statement in python?"

0

How can I increase number in input statement in python?

#     The most easist way imade it my self : */
  
#   imports: 
import itertools

# the loop you can also copy this 
while True:
    for i in itertools.count(start=1):
      
        add = ">>>"

        main = i * 1

        input(str(main) + " " + add)
        
        
# Thank You
Posted by: Guest on March-18-2021

Code answers related to "How can I increase number in input statement in python?"

Python Answers by Framework

Browse Popular Code Answers by Language