- List
- Dictionary
- Class
- Tuple
print list[1:3]
colors = ['red', 'orange', 'yellow', 'green', 'blue', 'indigo', 'violet']
orange
indigo
blue
yellow
mylist=[1, 5, 9, int('0')]
print(sum(mylist))
mylist=['a', 'aa', 'aaa', 'b', 'bb', 'bbb']
print(mylist[:-1])
list1 = [1, 3]
list2 = list1
list1[0] = 4
print(list2)
num = '5'*'5'
333
27
9
LoạiError: không thể được phân tách từ không-số của kiểu 'str'