how to add number is a list in python code example
Example 1: python add to list
list_to_add.append(item_to_add)
Example 2: how to add list numbers in python
lst = []
num = int(input('How many numbers: '))
for n in range(num):
numbers = int(input('Enter number '))
lst.append(numbers)
print("Sum of elements in given list is :", sum(lst))