How would I go about writing to a CSV file in Python?
I basically have 2 columns. First column is a list of transaction names, the 2nd column is timings.
I need to create a piece of code that can update the timings column when a user fills in an entry box.
I have setup the entrybox in tkinter and have setup the text variable ready. I'm ok with getting the variable but the problem I am having is taking the textvariable and finding the correct cell in the csv file and overwriting it.
Essentially I want to find the correct cell and paste the value over whats in the csv file.
any ideas?
thanks
pandasand the functionsread_csvandwrite_csv?