Answers for "how to take input from user in a list"

11

get list input from user in python

a = list(map(int,input("nEnter the numbers : ").strip().split()))
Posted by: Guest on September-17-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

Code answers related to "how to take input from user in a list"

Python Answers by Framework

Browse Popular Code Answers by Language