This is part of my script:
for line in range(0,len(lines),2):
num = lines[line].split()[8]
num1= abs(num)
Obviously I can produce many num1 here from each line….
Here I want to put all these num1 into one list, then how can I do? thx
Sorry guys, this is python! lol
What language are you trying to do this in?