Answers for "add list item in python"

0

add an element to list python

a=[8,5,6,1,7]
a.append(9)
Posted by: Guest on May-31-2020
0

add list python

my_list = ['a', 'b', 'c']
my_list.append('e')
print(my_list)
# Output
#['a', 'b', 'c', 'e']
Posted by: Guest on February-08-2021

Python Answers by Framework

Browse Popular Code Answers by Language