We’ve seen how to modify a list by concatenating another one to it. What if we would like to modify a list by adding a single value. One option would be to add a value wrapped in a list but python has a dedicated way of doing it with .append():
l = [12, 54, 'hello']
l += [38]
print(l) # [12, 54, 'hello', 38]