Answers for "how to take space seperated inputs in python"

1

input spaces seperated integers in python

# case1: suppose you need to get two integers
i1, i2 = map(int, input().split())

# case2: want a list? 
lst = map(int, input().split())
Posted by: Guest on March-21-2021
2

how to take space separated input in python

_input = input() # Get input
_input = "thing1 thing2, thing3"
space_split = _input.split() # ["thing1", "thing2,", "thing3"]
comma_split = _input.split(",") # ["thing1 thing2", "thing3"]
Posted by: Guest on August-23-2020

Code answers related to "how to take space seperated inputs in python"

Python Answers by Framework

Browse Popular Code Answers by Language