I'am trying to export as csv a pandas dataframe with the function:
outcome.to_csv("/Users/john/out_1.csv") I get the following error:
UnicodeEncodeError: 'ascii' codec can't encode character u'\u2019' in position 191: ordinal not in range(128) how do I go to position 191 to check what's wrong?
Many thanks
print u'\u2019'you will see what kind of character it is you are looking for. You should probably just start using python3