import pandas as pd
pd.__version__
df = pd.read_csv('myfile.csv', usecols=[0,3,4,5,9])
print (df)
I only want to return these specific columns from my csv file and write it into a new csv file?
How can I do this
so far i can read the data!! but not sure how to write it
ABSOLUTE PYTHON BEGGINER ALERT