Answers for "python add to arry"

5

append item to array python

data = []
data.append("Item")

print(data)
Posted by: Guest on May-08-2020

Python Answers by Framework

Browse Popular Code Answers by Language