score = 55
if not score < 60:
print 'passed'
else:
print 'failed'
if not score < 60:
print 'passed'
else:
print 'failed'
2015-01-08
L = ['Adam', 'Lisa', 'Bart']
L.reverse()
print L
L.reverse()
print L
2015-01-08
为什么 print ‘Learn Python in imooc.' 显示正常 print ‘Learn Python in imooc。'就会报错?
2015-01-07
qwe = ["Adam", 95.5, 'Lisa', 85, 'Bart',59]
2015-01-07