Answers for "push front and push back python list"

1

python list add element to front

# list.insert(before, value)
list = ["a", "b"]
list.insert(0, "c")
print(list)     # ['c', 'a', 'b']
Posted by: Guest on May-13-2021

Python Answers by Framework

Browse Popular Code Answers by Language