Answers for "how to read 2 input in python"

1

two input in one line python

#two input in one line python

X, N = [int(x) for x in input().split()]
Posted by: Guest on November-08-2021
3

taking multiple input in python

only_str = input().split() #only str
define_type = list(map(int, input().split())) #int, float, str
Posted by: Guest on February-21-2021

Code answers related to "how to read 2 input in python"

Python Answers by Framework

Browse Popular Code Answers by Language