Answers for "space separated input in python using map"

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
0

how to input n space separated integers in python

PQT =list(map(int, input().split()[:N]))
Posted by: Guest on December-05-2020

Code answers related to "space separated input in python using map"

Python Answers by Framework

Browse Popular Code Answers by Language