Skip to content

Tag: csv

Python CSV different delimiter

I am trying to read a file that has ` as delimiters. I have tried some of the other solutions for a different delimiter but none seemed to work. example input file: the expected out should be: but this is what I get: Thanks for your time! Answer I’d suggest using the DictReader class from the standard l…

python web scraping data to csv

I was trying to use python web scraping then output a csv file but the print format is not matching csv format. outputenter image description here how to print this expecting results? enter image description here Thanks Below is my script Answer The first problem is you use “writerows”, which will…