How to spread a python arrayAsked This question already has answers here: Closed 2 years ago. In JS I can do this const a = [1,2,3,4] const b = [10, ...a] console.log(b) // [10,1,2,3,4] Is there a similar way in python?https://stackoverflow.com/questions/48451228/how-to-spread-a-python-array