课程
/后端开发
/Python
/初识Python
sum = 0
x = 0
while True:
if x > 100:
break
if not x % 2:
continue
sum=sum+x
x=x+1
print sum
2019-03-23
源自:初识Python 5-7
正在回答
if not x % 2: 语法错误
if x % 2 == 0:
知道了
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序