new_list = ['one', 'two', 'three', 'four', 'five']
new_list.append('six')
new_list = ['one', 'two', 'three', 'four', 'five', 'six']
new_list = ['a','e','x','b','c']
num_list = [4,1,8,3]
new_list.sort()
['a', 'b', 'c', 'e', 'x']
num_list
[1, 3, 4, 8]
num_list.reverse()
[8, 4, 3, 1]