Python 中批量注释导致 while...else... 报语法错误的原因是什么?
批量注释导致 while...else... 中 else 报语法错误的原因
在 python 中的批量注释,语法与 c 语言不同。在 c 语言中,以 /* 开始,以 */ 结束的部分为一个注释块。而在 python 中,以 ''' 开始,以 ''' 结束的部分才是一个注释块。
例如,以下代码在 c 语言中不会出错:
/** * this is a multiline comment. */ int main() { return 0; }
但这段代码在 python 中将引发错误:
''' this is a multiline comment. ''' print("hello, world!")
因此,在针对 python 代码进行批量注释时,需要使用正确的语法:
while count < 10: # ... else: # ...
或者使用单行注释:
while count < 10: # ... else: # this is a comment on a single line.
值得注意的是,在 python 中,如果无法将多行注释内容放在 while...else... 语句之外,可以将注释块移动到其他位置,例如代码末尾:
while count < 10: # ... # This is a multiline comment. else: # ...
这样就不会出现语法错误了。
以上就是Python 中批量注释导致 while...else... 报语法错误的原因是什么?的详细内容,更多请关注其它相关文章!