Answers for "input two variables 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 "input two variables python"

Python Answers by Framework

Browse Popular Code Answers by Language