MyList1 = [1,2,3,4,5,6,7,8]
MyList2 = ["appeles","oraanges","bannanas","pears"]

l=[]

MyList1.append(9)

# [1, 2, 3, 4, 5, 6, 7, 8, 9]

print(MyList1)

string="HelloWorld"

MyList3 = list(string)
print(MyList3)
# ['H', 'e', 'l', 'l', 'o', 'W', 'o', 'r', 'l', 'd']
print(MyList2[0])
# appeles
print(MyList2[-1]) # Last list in list
# pears