Answers for "python how to input multiple values in one line"

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
0

input multiple values in python

mA,mB = map(float,input().split()) #if float data type
mA,mB = map(int,input().split()) #if int data type
Posted by: Guest on August-19-2021

Code answers related to "python how to input multiple values in one line"

Python Answers by Framework

Browse Popular Code Answers by Language