Hello Cathy, I had the same issue, turn out that it is the blank line that is getting inserted after appending to the CSV. Use the following code (assuming you are using python3):

with open('.data/places.csv', mode='a', newline='') as csv_file:

instead of

with open('.data/places.csv', mode='a') as csv_file:

Best of Luck!

--

--

Software Developer having keen interest in Security, Privacy and Pen-testing. Certs:- Security+,PenTest+,AZ900,AZ204

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store
0xsanz

Software Developer having keen interest in Security, Privacy and Pen-testing. Certs:- Security+,PenTest+,AZ900,AZ204