您现在的位置是:课程教程文章

python3开头如何设置utf-8

2023-12-18 21:52课程教程文章 人已围观

编码格式1:

在源文件第一行或者第二行定义:

# coding=<encoding name>

例如:

# coding=utf-8

相关推荐:《Python基础教程》

编码格式2:(这种最流行)

格式如下:

#!/usr/bin/python 
# -*- coding: <encoding name> -*-

例如:

#!/usr/bin/python 
# -*- coding: utf-8 -*-

编码格式3:(如果使用了vim)

#!/usr/bin/python 
# vim: set fileencoding=<encoding name> :

例如:

#!/usr/bin/python
# vim: set fileencoding=utf-8 :

(推荐操作系统:windows7系统、Python 3.9.1,DELL G3电脑。)

课程教程:python3开头如何设置utf-8

上一篇:python中的pandas是什么

下一篇:没有了

站点信息

  • 文章统计篇文章