lists

PHOTO EMBED

Mon Dec 27 2021 10:57:22 GMT+0000 (Coordinated Universal Time)

Saved by @ahoeweler

# get last value from list:
list[-1]
# start is inclusive, end is exclusive
list[2:4]
# add elements of list
list[1] + list[2]
# delete elements of list
del(list[2])
# sort lists
sorted(list)
content_copyCOPY