Answers for "how to add an array python"

10

python add element to array

my_list = []

my_list.append(12)
Posted by: Guest on July-10-2020
0

python array append

my_list = ['a','b']  
my_list.append('c') 
print(my_list)      # ['a','b','c']

other_list = [1,2] 
my_list.append(other_list) 
print(my_list)      # ['a','b','c',[1,2]]

my_list.extend(other_list) 
print(my_list)      # ['a','b','c',[1,2],1,2]
Posted by: Guest on February-13-2021

Code answers related to "how to add an array python"

Python Answers by Framework

Browse Popular Code Answers by Language