author = 'jyang'import sysimport jsonreload(sys)sys.setdefaultencoding('utf-8')还报Undefined variable from import: setdefaultencoding错误
认证高级PHP讲师
What version of python?
There is a possibility that python3 has been usedreload has been placed in another location,
from imp import reload
But sys.setdefaultencoding('utf-8') is no longer meaningful, Because python3 uses unicode, there is no need to set utf-8 anymore
from importlib import reload reload(modulename)
What version of python?
There is a possibility that python3 has been used
reload has been placed in another location,
But sys.setdefaultencoding('utf-8') is no longer meaningful,
Because python3 uses unicode, there is no need to set utf-8 anymore