In A python project I have a huge list of coordinates (x,y values):
Coordinates = [(144282.027, 523177.144), (144281.691, 523183.33), (144280.696, 523183.275), (144280.506, 523186.767), (144272.518, 523186.348), (144272.702, 523182.862), (144269.203, 523182.673), (144269.541, 523176.471), (144274.835, 523176.759), (144275.025, 523173.261), (144281.218, 523173.598), (144281.028, 523177.09), (144282.027, 523177.144)]
To read it as a las file I need it space seperated x y z with a return:
144282.027 523177.144 0
144281.691 523183.33 0
....
I only see answers on stackoverflow doing the opposite way: space seperated text file -> python list