Answers for "how input to list"

6

get list as input

#to get integer list
integer_list = list(map(int, input().split()))
#to get char or str list, just replace int with str
str_list = list(map(str, input().split()))
#syntax of map(): map(dataType, iterable [, iterable2, iterable3,...iterableN])
Posted by: Guest on June-03-2020
0

how to get input as list in python

# For list of integers
lst1 = [] 
 
# For list of strings/chars
lst2 = [] 
 
lst1 = [int(item) for item in input("Enter the list items : ").split()]
 
lst2 = [item for item in input("Enter the list items : ").split()]
 
print(lst1)
print(lst2)
Posted by: Guest on August-07-2021

Python Answers by Framework

Browse Popular Code Answers by Language