https://dataindependent.com/pandas/pa...
https://github.com/Data-Indepedent/pa...
Pandas Set Values is important when writing back to your CSV. Usually you're doing to be reading Pandas tables. But what if you're treating a CSV like a basic database and you need to update a cell value? If you need to set/get a single DataFrame values, .at[] and .iat[] is the way to do it.
Pandas .at[] and .iat[] is similar to .loc[]. Make sure to use square brackets instead of normal function parenthesis.