ajschumacher / gadsdc

materials for General Assembly Data Science DC course
81 stars 93 forks source link

idea for data-munging exercise #230

Open ajschumacher opened 9 years ago

ajschumacher commented 9 years ago

here's an interesting (?) case:

if you print out a json string from python, internal escaped quotes (in a href's, for example) will get un-escaped and json.loads will fail, unless you load the string in as raw (s=r'blah'). (might work in loading from file? didn't check.)

could be a decent exercise / puzzle