作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我尝试在 Python IDLE 上执行以下代码
from __future__ import braces
我收到以下错误:
SyntaxError: not a chance
上面的错误是什么意思?
最佳答案
你在 Python 中找到了一个复活节彩蛋。这是个笑话。
这意味着永远不会实现用大括号而不是缩进来分隔 block 。
通常,从 special __future__
module 导入启用向后不兼容的功能,例如 print()
函数或真正的除法。
因此,from __future__ import 大括号
行表示您想要启用“使用大括号创建 block ”功能,并且异常告诉您永远 没有发生。
您可以将其添加到 Python 中包含的一长串笑话中,就像 import __hello__
、import this
和 import antigravity
. Python 开发人员具有良好的幽默感!
关于python - 语法错误 : Not a Chance - What is this error?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17811855/
我是一名优秀的程序员,十分优秀!