Answers for "how to take multiple input in python without knowing number of inputs"

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 take multiple input in python without knowing number of inputs"

Python Answers by Framework

Browse Popular Code Answers by Language