在python 2.7中打印时出现语法错误

时间:2016-06-01 03:19:18

标签: python python-2.7

以下代码在从文件运行时工作正常。

count = 0
while count < 10:
     count = count + 1
     if count == 5:
         break
     print("inside loop", count)
print("out of while loop")

输出:

enter image description here

但是当我尝试从python 2控制台运行相同的代码时,我得到SyntaxError

enter image description here

0 个答案:

没有答案