I have a simple question and sorry if i post in stackoverflow. I am quite new in python and i don't remember how i can read in list compression a x,y,z
my file is a x,y,z file where each line is a points:
x1,y1,z1
x2,y2,z2
x3,y3,z3
........
inFile = "Myfile.las"
with lasfile.File(inFile, None, 'r') as f:
# missing part
points =[]
what i wish to save an object with only x and y
Thanks in advance and sorry for the simple question