Python可以用中文命名
python中文命名
命名规则数字、字母、下划线
环境
- python 3.7.3 x64
-
win10
现象
python在命名的地方都是可以用中文命名
如: -
变量
- 中文下划线无法被识别
- 打出中文下划线按退格键会不会被识别,会把前边一个字符删了
-
类、类属性、方法、函数
作用
都不用写注释,但是开发效率降低了点(来回切换输入法)
原因
python2并不支持非ascii码标识符. 于2008年12月发布的python3开始支持. 2008年! 也就是十多年前.
创建于2007年5月的python增强提案pep 3131 -- supporting non-ascii identifiers阐述了支持非ascii码命名标识符的缘由. rationale (依据) 一节开篇明义, 指出很多python开发者并不熟悉英语, 更希望用母语对类/方法进行命名, 而不是用经常有误的英文翻译. 对使用同样母语的开发者来说, 用母语命名的标识符可以提高代码清晰度和可维护性.
python code is written by many people in the world who are not familiar with the english language, or even well-acquainted with the latin writing system. such developers often desire to define classes and functions with names in their native languages, rather than having to come up with an (often incorrect) english translation of the concept they want to name. by using identifiers in their native language, code clarity and maintainability of the code among speakers of that language improves.
文献
推荐阅读
-
python操作mysql中文显示乱码的解决方法
-
Python matplotlib画图与中文设置操作实例分析
-
python开发(OS模块,批量文件命名和合并)
-
零基础如何学好python?Python代码规范之命名规范
-
Python实现按中文排序的方法示例
-
python与中文的那点事
-
python书籍推荐:Python Cookbook第三版中文
-
Python中规范定义命名空间的一些建议
-
python中time.strftime不支持中文,报错UnicodeEncodeError: 'locale' codec can't encode character '\u5e74' in position 2: encoding error
-
Python判断中文字符串是否相等的实例