Here, we will figure out how to pronounce a list, input components, add the components in the list lastly, print the list?
Peruse the value of N (breaking point of the list), input N components and print the components in Python.
Example:
Input:
Enter limit of the list: 5
Enter an integer: 10
Enter an integer: 20
Enter an integer: 30
Enter an integer: 40
Enter an integer: 50
Output:
Input list elements are:
10
20
30
40
50
Program:
# declare a list
list = []
# read limit (value of n)
# for maximum number of elements
n = int (input ("Enter limit of the list: "))
# input n integer element
# and append to the list
for i in range (n) :
item = int (input ("Enter an integer: "))
list.append (item)
# print all elements
print "Input list elements are: "
for i in range (n) :
print list [i]
Output:
Enter limit of the list: 5
Enter an integer: 10
Enter an integer: 20
Enter an integer: 30
Enter an integer: 40
Enter an integer: 50
Input list elements are:
10
20
30
40
50