Table rows not written in csv file

I’ve tried encoding=‘utf-8’ then aslo table row elements are not written in csv file,

I’ve written exact code as shown in lecture

Can you share your code
Because the code works fine.

I’m sharing google drive link to u, please download python/jupyter file from the link and see the code, I have problem in the last block of that jupyter file, it’s not writing in csv file : https://drive.google.com/open?id=1sJYcokWGqgHk1qH7LPxFHktsYOomylsH

Instead of appending a newline char at the end of the string you are replacing whole string

Change this line row_string=’\n’ with row_string+=’\n’ it will work

ok it’s done, thank you