# int, flat, string, tool, basic, data, typ
# complex data type list - collection of items - aka array (collection items)
# must use square brackets, must use commas between num no comma at last item[1, 2, 3, 4,]
a_list = [1, 2, 3, 4, 100]
a_list = [1, 3.1459, "Hello , ["world", 5]"]
print(a_list[2])
a_list.append(5) #puts item at end of the list
a_list.insert(2,100) #insert can be quite expensive consumes more memory,cpu,ram millions items = loading issues hundreds = fine
print(a_list)
print(input (a_list)) #I could not see the stuff on screen so input could be wrong
my_itm = a_list.pop(1)
print(a_list)
print(my_itm)
a_list remove


#I could not do the first test cause I have an error with on of the brackets for some reason and his talking about remove last items beggingn,middle,end
# use term method not function