本站资源收集于互联网,不提供软件存储服务,每天免费更新优质的软件以及学习资源!

Python中批量注释导致while…else…报语法错误的原因是什么?

网络教程 app 1℃

Python中批量注释导致while…else…报语法错误的原因是什么

批量注释导致 while…else… 中 else 报语法错误的原因

在 python 中的批量注释,语法与 c 语言不同。在 c 语言中,以 /* 开始,以 */ 结束的部分为一个注释块。而在 python 中,以 ”’ 开始,以 ”’ 结束的部分才是一个注释块。

例如,以下代码在 c 语言中不会出错:

/** * this is a multiline ment. */int main() { return 0;}

但这段代码在 python 中将引发错误:

”’this is a multiline ment.”’print("hello, world!")

因此,在针对 python 代码进行批量注释时,需要使用正确的语法:

while count < 10: # …else: # …

或者使用单行注释:

while count < 10: # …else: # this is a ment on a single line.

值得注意的是,在 python 中,如果无法将多行注释内容放在 while…else… 语句之外,可以将注释块移动到其他位置,例如代码末尾:

while count < 10: # …# This is a multiline ment.else: # …

这样就不会出现语法错误了。

以上就是Python 中批量注释导致 while…else… 报语法错误的原因是什么?的详细内容,更多请关注范的资源库其它相关文章!

转载请注明:范的资源库 » Python中批量注释导致while…else…报语法错误的原因是什么?

喜欢 (0)