Liste de la liste 2 listes

b = ["a", "b"] + [7, 6]
print(b)
# ['a', 'b', 7, 6]
Sore Sloth