Answers for "how to add item in array python"

0

how to push item to array python

mylist = list()
mylist.append(1)
mylist.append(2)
mylist.append(3)
print(mylist)
>>> [1,2,3]
Posted by: Guest on May-28-2021

Code answers related to "how to add item in array python"

Python Answers by Framework

Browse Popular Code Answers by Language