Beginner question ~
If I have three lists a and b and c what are the recommended ways for creating a new list with all of the elements of a, b and c?
It looks like there's a simple a + b + c ~ but then the internet gives me complicated-looking alternatives involving .extend() and from itertools import chain.
Is there some big non-obvious downside to x = a + b + c? It seems simple and clear code to me.
(Using Python 3.12.)