gpt4 book ai didi

python-3.x - 定义以数字开头的函数名(在 Python 3 中)?

转载 作者:行者123 更新时间:2023-12-03 09:43:29 24 4
gpt4 key购买 nike

我尝试创建以下函数:def 3utr():
do_something()
.
但是,我收到了 SyntaxError。用“三”替换“3”解决了这个问题。

我的问题是:

  • 为什么会出现语法错误?
  • 有没有办法让函数名在 Python 3 中以数字开头?
  • 最佳答案

    这是一个语法错误,因为语言规范不允许标识符以数字开头。所以在 Python 中不可能有以数字开头的函数名(它们是标识符)。

    identifier ::= (letter|"_") (letter | digit | "_")*



    Python 2 Language Reference

    Within the ASCII range (U+0001..U+007F), the valid characters for identifiers are the same as in Python 2.x: the uppercase and lowercase letters A through Z, the underscore _ and, except for the first character, the digits 0 through 9.



    Python 3 Language Reference

    关于python-3.x - 定义以数字开头的函数名(在 Python 3 中)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13755532/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com