python 显示中文 代码
时间: 2024-06-17 13:02:43 浏览: 144
Python 中文编码
在 Python 中显示中文,需要在代码开头添加如下注释,以告诉 Python 解释器编码方式为 utf-8:
```
# -*- coding: utf-8 -*-
```
这个注释的作用是告诉 Python 解释器,后面的代码中可能包含中文字符,而 utf-8 是一种常用的编码方式。在使用中文字符时,也需要使用 utf-8 编码。例如:
```
print("你好,世界!")
```
阅读全文