【问题标题】:Allowed characters in Python function namesPython 函数名中允许的字符
【发布时间】:2013-10-29 05:58:51
【问题描述】:

除了字母字符、数字和下划线之外,Python 函数名称中是否还有其他允许的字符?如果是,它们是什么?

【问题讨论】:

标签: python function


【解决方案1】:

In Python 3 many characters are allowed:

identifier   ::=  xid_start xid_continue*
id_start     ::=  <all characters in general categories Lu, Ll, Lt, Lm, Lo, Nl, 
                   the underscore, and characters with the Other_ID_Start property>
id_continue  ::=  <all characters in id_start, plus characters in the categories 
                   Mn, Mc, Nd, Pc and others with the Other_ID_Continue property>
xid_start    ::=  <all characters in id_start whose NFKC normalization 
                   is in "id_start xid_continue*">
xid_continue ::=  <all characters in id_continue whose NFKC normalization 
                   is in "id_continue*">

The Unicode category codes mentioned above stand for:

Lu - uppercase letters
Ll - lowercase letters
Lt - titlecase letters
Lm - modifier letters
Lo - other letters
Nl - letter numbers
Mn - nonspacing marks
Mc - spacing combining marks
Nd - decimal numbers
Pc - connector punctuations
Other_ID_Start - explicit list of characters in PropList.txt 
                 to support backwards compatibility
Other_ID_Continue - likewise

每个角色的完整列表可以在Unicode.org找到。


在 Python 2.x 中,它仅限于字母、数字和下划线。来自the docs

identifier ::=  (letter|"_") (letter | digit | "_")*
letter     ::=  lowercase | uppercase
lowercase  ::=  "a"..."z"
uppercase  ::=  "A"..."Z"
digit      ::=  "0"..."9"

【讨论】:

猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2011-06-16
  • 2010-10-23
  • 1970-01-01
  • 1970-01-01
  • 2021-01-02
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多