I'm looking to create a new .csv file using python and then write to the file after that. I couldn't find a command to create a new file using the CSV library. I thought something like
NewFile = csv.creatfile(PATH)
might exist but I couldn't find something like that.
Thank you in advance! Happy to answer any questions you may have!
open('eggs.csv', 'wb')in the example does. File creation is also in the tutorial.