没有结果,问题在哪里
sum=0
x=1
while True:
x=x+1
if x/2 == 0:
continue
sum=sum+x
if x>100:
break
print sum
C:\Python27\python.exe C:/Python27/qry/2016-7-5.py
File "C:/Python27/qry/2016-7-5.py", line 5
if x/2 == 0:
^
IndentationError: unexpected indent
Process finished with exit code 1