Skip to content

Instantly share code, notes, and snippets.

@CHARITH1995
Created July 17, 2020 08:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CHARITH1995/18a34af0e3e826d52b9c581b17a9151b to your computer and use it in GitHub Desktop.
Save CHARITH1995/18a34af0e3e826d52b9c581b17a9151b to your computer and use it in GitHub Desktop.
save data on a .csv file
with open ('news.csv','w',encoding="utf-8") as file: # you have to create .csv file call news.csv before use this
writer=csv.writer(file)
writer.writerow(course)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment