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