Python可以用中文命名

Python中文命名

命名规则数字、字母、下划线

环境

  1. python 3.7.3 x64
  2. win10

    现象

    Python在命名的地方都是可以用中文命名
    如:
  3. 变量
    在git bash中的测试cmd测试

    1. 中文下划线无法被识别
    2. 打出中文下划线按退格键会不会被识别,会把前边一个字符删了
  4. 类、类属性、方法、函数
    中文类名、函数名、属性、方法名

    作用

    都不用写注释,但是开发效率降低了点(来回切换输入法)

    原因

    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.

    文献

    已经十多年了! 你知道Python3可以用中文命名变量吗?

猜你喜欢

转载自www.cnblogs.com/Li929704201/p/12534637.html