Created
March 22, 2019 16:56
-
-
Save protorob/d06c2c27c845259efd6e9f2ea2dc033d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import html | |
just_open = open('art.csv', 'r') | |
output_file = open('freshnclean.csv', 'w') | |
i = 0 | |
for row in just_open: | |
if (i >= 0 and i < 5000): | |
lariga = html.unescape(row) | |
print(lariga) | |
output_file.write(lariga) | |
i+=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment