Contents
lst1 = ['A', 'b', 'c', 3, 4, 5, 'h', 'i', 'j']

lst1[1] = [7, 8, 9]

print(lst1)