python add element to array
my_list = []
my_list.append(12)
addition of array in python with input
#Python program to add all the array elements using the built-in function
lst = []
num = int(input("Enter the size of the array: "))
print("Enter array elements: ")
for n in range(num):
numbers = int(input())
lst.append(numbers)
print("Sum:", sum(lst))
how to add array and array python
capitals = ['A', 'B', 'C']
lowers = ['a', 'b', 'c']
alphabets = capitals + lowers
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us