Possible to append multiple lists at once? (Python) July 22, 2023 by Tarik x.extend(y+z) should do what you want or x += y+z or even x = x+y+z