how to trake muyltiple inputs in same line in python

Solutions on MaxInterview for how to trake muyltiple inputs in same line in python by the best coders in the world

showing results for - "how to trake muyltiple inputs in same line in python"
Zeke
02 Jul 2019
1x, y = [int(x), int(y)]
2
3# We can also use  list comprehension
4x, y = [int(x) for x in [x, y]]
5