python declaring an array code example
Example 1: python create array
variable = []
Example 2: declare array python
arr = [1,'string',None,True]
Example 3: arrays in python
# In python, arrays are actually called lists. Same thing tho
list_or_array = [1.0, 2, '3', True, [1, 2, 3, 4]]
"""
So, list can contain floats, integers, strings, booleans, nested lists, and
practically any other datatype
"""