append int to a list in python code example
Example 1: how to append a number to a list in python
l = [1, 2, 4, 5]
new_item = 6
l.append(6)
print(l)
Example 2: append integer to list python
foo = [1, 2, 3, 4, 5]
foo.append(4)
foo.append([8,7])
print(foo) # [1, 2, 3, 4, 5, 4, [8, 7]]