with open(data_path) as f:
content = f.readlines()
content = [x.strip() for x in content]
The following code will read every single line and insert it into a list.
But the code i want should read the first line and skip the second then read the third or simply adjust content to "remove" values with odd
indices number.