Answers for "how to put user input values in a list python"

7

how to get user input of list in python

# number of elements 
n = int(input("Enter number of elements : ")) 
  
# Below line read inputs from user using map() function  
a = list(map(int,input("nEnter the numbers : ").strip().split()))[:n] 
  
print("nList is - ", a)
Posted by: Guest on May-04-2020
2

how to get an input into a list python

input_string = input("Enter a list element separated by space ")
list  = input_string.split()
print("Calculating sum of element of input list")
sum = 0
for num in list:
    sum += int (num)
print("Sum = ",sum)
Posted by: Guest on February-22-2021
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 put user input values in a list python"

Python Answers by Framework

Browse Popular Code Answers by Language