print 45678+int(0x12fd2)
print "Learn Python in imooc"
print 100<99
print 0xff==255
print "Learn Python in imooc"
print 100<99
print 0xff==255
2016-11-18
print r'''"TO BE,ornot to be":that is the question.
whether it's nobler in the mind to suffer.'''
whether it's nobler in the mind to suffer.'''
2016-11-18
print"Python was started in 1989 by\"Guido\".\nPython is free and easy to learn."
2016-11-18
只抽出改变的部分,重用代码,效果是一样的,只是代码验证不能通过,也不知道是怎么验证的……
return '<tr><td>%s</td><td%s>%s</td></tr>' % (name, ' style="color:red"' if score<60 else '',score)
return '<tr><td>%s</td><td%s>%s</td></tr>' % (name, ' style="color:red"' if score<60 else '',score)
2016-11-18