Problem: I cannot seem to parse the information in a text file because python reads it as a full string not individual separate strings. The spaces between each variable is
You can instruct csv.reader to use space as delimiter and skip all the extra space:
reader = csv.reader(f, delimiter=" ", skipinitialspace=True)
For detailed information about available parameters check Python docs:
Dialect.delimiter A one-character string used to separate fields. It defaults to ','. Dialect.skipinitialspace When True, whitespace immediately following the delimiter is ignored. The default is False.