code to append number in the list by using append() code example Example: how to append a number to a list in python l = [1, 2, 4, 5] new_item = 6 l.append(6) print(l)