Untitled
Anonymous
plain_text
05/09/2023 10:57 PM
268 B
17
Indexable
# create CSV file and write header row
with open("scraped_data.csv", "w", newline='') as csvfile:
writer = csv.writer(csvfile)
writer.writerow(['ISBN', 'Bookname', 'Price', 'Author', 'Editor'])Editor is loading...