Answers for "how can i get 2 inputs in singal line seprated by space"

0

how can i get 2 inputs in singal line seprated by space

x, y = input().split()
Note that we don’t have to explicitly specify split(‘ ‘)
because split() uses any whitespace characters as a delimiter as default.
Posted by: Guest on April-08-2021

Code answers related to "how can i get 2 inputs in singal line seprated by space"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language