Looks like no one added any tags here yet for you.
A simple list format
list = [‘Harry’, ‘‘Ron’, ‘Fred’]
first element in a list
list[0]
delete the last element from a list
del list[-1]
organise list in alphabetical order
list.sort()
print all things in a list with for loop
for l in list:
print(l)
find min number in a list
min(list)