Append Array In Array Python Code Example
Example 1: append element to an array python
x = ['Red', 'Blue'] x.append('Yellow') Example 2: append item to array python
data = [] data.append("Item") print(data)x = ['Red', 'Blue'] x.append('Yellow') data = [] data.append("Item") print(data)
Comments
Post a Comment