s =100
x =1
sum =0
while x <s:
sum =sum +x
x =x +2
print sum
还好有一点点VB的基础
x =1
sum =0
while x <s:
sum =sum +x
x =x +2
print sum
还好有一点点VB的基础
2016-02-25
score=85
if score >=90:
print'excellent'
elif score >=80:
print'good'
elif score >=60:
print'passed'
else:
print 'failed'
if score >=90:
print'excellent'
elif score >=80:
print'good'
elif score >=60:
print'passed'
else:
print 'failed'
2016-02-25
s=55
if s>=60:
print 'passed'
else:
print 'failed'
if s>=60:
print 'passed'
else:
print 'failed'
2016-02-25
思考这个是因为age=20满足了第一个判断,在执行时是只执行第一个满足的判断下的语句,对后续平行的几个判断是不做运算的。要修改只需要把age>=18和age>=6替换位置。或者在age>=6后面加条件改为age>=6 and age<18。
2016-02-25
sum = 0
x = 1
while x < 100:
sum = sum + x
x = x + 2
print sum
看了答案才理解:sum = sum + x , x = x + 2
x = 1
while x < 100:
sum = sum + x
x = x + 2
print sum
看了答案才理解:sum = sum + x , x = x + 2
2016-02-25
true and‘a=t’,and运算法则以及短路计算,前一个为真,则返回后一个值,所以返回‘a=t’;Python把‘a=t’视为true,因此根据or运算法则以及短路计算,应该返回第一个值,所以结果应该是‘a=t’。
2016-02-24
def move(n, a, b, c):
if n==1:
print a,'-->',c
return
move(n-1,a,c,b)
move(n-1,b,a,c)
print a,'-->',c
move(4, 'A', 'B', 'C')
感觉这样好懂多了,, 这个print加的让人云里雾里
if n==1:
print a,'-->',c
return
move(n-1,a,c,b)
move(n-1,b,a,c)
print a,'-->',c
move(4, 'A', 'B', 'C')
感觉这样好懂多了,, 这个print加的让人云里雾里
2016-02-24
print 'hello,''python'
print 'hello,python'
print 'hello,'+'python'
print 'hello,python'
print 'hello,'+'python'
2016-02-23