I am new to Python and I am having some problems with CSV files in Python. Please help me out
How do I open and read csv files in Python which are present in some other directory? I know we can do
import csv f = open('attendees1.csv')
As long as my program file and csv file is in the same directory. But how do I provide a link to the csv file sitting in another directory?
I have a list with multiple rows and columns, how do I transfer this data to a csv file and save it down in a particular location?
Please help me out