I have a .txt file with this inside - 2.9,Gardena CA
What I\'m trying to do is convert that text into a .csv (table) using a python script:
import c
import pandas as pd df = pd.read_fwf('log.txt') df.to_csv('log.csv')