how to take multiple inputs to a function in python code example
Example: taking multiple input in python
only_str = input().split() #only str
define_type = list(map(int, input().split())) #int, float, str
only_str = input().split() #only str
define_type = list(map(int, input().split())) #int, float, str