how to trake muyltiple inputs in same line in python code example
Example: how to trake muyltiple inputs in same line in python
x, y = [int(x), int(y)]
# We can also use list comprehension
x, y = [int(x) for x in [x, y]]
x, y = [int(x), int(y)]
# We can also use list comprehension
x, y = [int(x) for x in [x, y]]