Answers for "how do i declare multiple inputs to the same variable python"

0

multiple variable input in python

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

#for int
x, y = map(int, input().split())
Posted by: Guest on October-15-2021

Code answers related to "how do i declare multiple inputs to the same variable python"

Python Answers by Framework

Browse Popular Code Answers by Language