When I run this code, it gives None instead of the 'Python' getting appended to the List. Why is that so?
input_tuple = ('Monty Python', 'British', 1969)
input_list = list(input_tuple)
print(input_list)
input_list_1 = input_list.append('Python')
print(input_list_1)