Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

input spaces seperated integers in python

# case1: suppose you need to get two integers
i1, i2 = map(int, input().split())

# case2: want a list? 
lst = map(int, input().split())
Source by www.quora.com #
 
PREVIOUS NEXT
Tagged: #input #spaces #seperated #integers #python
ADD COMMENT
Topic
Name
8+4 =