Skip to content

Instantly share code, notes, and snippets.

@tuphamphuong
Created December 16, 2016 07:45
Show Gist options
  • Save tuphamphuong/96f8da3109031fee073f85b8a0878b26 to your computer and use it in GitHub Desktop.
Save tuphamphuong/96f8da3109031fee073f85b8a0878b26 to your computer and use it in GitHub Desktop.
Python 2.x change default encoding to utf-8
import sys
reload(sys)
sys.setdefaultencoding("utf-8")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment