sum = 0
x = 0
while True:
x = x + 1
if x > 100:
break
elif x%2 == 0:
continue
sum+=x
print sum
x = 0
while True:
x = x + 1
if x > 100:
break
elif x%2 == 0:
continue
sum+=x
print sum
2019-02-27
将一个函数的一个或多个参数添加默认参数,只需要在原参数后添加“=(默认值)”即可,并在函数中将默认情况考虑进去,在必要的时候进行更改即可。
2019-02-26
函数名有问题,square of sum是和的平方,sum of square才是平方和,既然想用英文来命名函数,就用正确,麻烦改一下
2019-02-26
最赞回答 / Awful_Leo
只提示语法错误。题主问的也有问题,return的时候,并不是不可以计算,return sum/x 就是先计算再成功返回。我理解题主想问的是,为什么return语句后面不能跟一个赋值等式。有些语言里是允许这样写的,我记得php就可以。但这可能就是语言间不一样的地方。既然是语法错误,那就是python的解释器就不允许这种书写形式,题主也就不用纠结背后有什么其它原因了。
2019-02-26
最新回答 / 车到山前
1.类似的,如果字符串包含",我们就可以用' '括起来表示:
'Learn "Python" in imooc'2.如果字符串既包含'又包含"怎么办?这个时候,就需要对字符串的某些特殊字符进行“转义”,Python字符串用\进行转义。
2019-02-25
print 'hello,python'
print 'hello'+','+'python'
print 'hello'+','+'python'
2019-02-25
print 45678+0x12fd2
print "Leran Python in imooc"
print 100<99
print 0xff==255
print "Leran Python in imooc"
print 100<99
print 0xff==255
2019-02-25
我理解错了,我以为要完全打出来这样的形式,包括\ ' "的,
'\"To be, or not to be\": that is the question.\nWhether it\'s nobler in the mind to suffer.'
'\"To be, or not to be\": that is the question.\nWhether it\'s nobler in the mind to suffer.'
2019-02-25