发布网友 发布时间:2022-04-20 06:26
共4个回答
热心网友 时间:2022-04-29 13:33
python3中用的是Unicode编码,Unicode号称万国码,可以向所有的编码进行兼容。在Python3中不会出现中文打印不了的情况,除非是文件本身编码出了问题。所以直接print("内容")应该就可以了。
热心网友 时间:2022-04-29 14:51
如果是不能写中文的话:把中文写在其他地方然后复制粘贴
如果是不能print中文的话:
# -*- coding: utf-8 -*-
print("你好")
不过python3一般不会出错
热心网友 时间:2022-04-29 18:17
print("中文")
热心网友 时间:2022-04-29 20:25
import io
import sys
sys.stdout = io.TextIOWrapper(sys.stdout.buffer,encoding='utf-8')
print('中文')