Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

multiple variable input in python

# for str
n1, n2 = input().split()

#for int
x, y = map(int, input().split())
 
PREVIOUS NEXT
Tagged: #multiple #variable #input #python
ADD COMMENT
Topic
Name
9+2 =