Array In Python
[1]. Arrays are represented by class list (see reference and do not mix them with generators).
Examples:
[2]. Differences between array, array of references and linked list
Examples:
# empty array
arr = []
# init with values (can contain mixed types)
arr = [1, "eels"]
# get item by index (can be negative to access end of array)
arr = [1, 2, 3, 4, 5, 6]
arr[0] # 1
arr[-1] # 6
# get length
length = len(arr)
# supports append and insert
arr.append(8)
arr.insert(6, 7)
[2]. Differences between array, array of references and linked list
Comments
Post a Comment