Answers for "how to append new element to list"

15

how to add element to list python

lst = ["f", "o", "o", "b", "a","r"]
lst.append("b")
print(lst) # ["f", "o", "o", "b", "a", "r", "b"]
Posted by: Guest on November-12-2021
0

add an element to list python

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

Code answers related to "how to append new element to list"

Python Answers by Framework

Browse Popular Code Answers by Language