1
2
3
4
5
|
#encoding=utf-8 import
sys type
=
sys.getfilesystemencoding() print
'中国' .decode( 'utf8' ).encode( type ) |
print输出乱码
最新推荐文章于 2024-06-11 18:31:21 发布
1
2
3
4
5
|
#encoding=utf-8 import
sys type
=
sys.getfilesystemencoding() print
'中国' .decode( 'utf8' ).encode( type ) |