最赞回答 / 慕容1441228
是否使用的是python3进行编程,python3中无cmp函数,需要引入模块>>>import operator然后调用相应operator.lt(a, b),还有其他对应的函数le,eq,ne,ge,gt;
2019-05-10
最新回答 / I依恋Lee
python2.x中print默认是不支持中文的,如果需要打印中文的话需要在py文件的顶部加上下列这行,指定字符编码为utf-8# -*- coding: utf-8 -*-
2019-05-08
最新回答 / 慕娘8031309
return '<tr><td>%s</td><td><font color="red">%s</font></td></tr>' % (name, score)这样就可以
2019-05-08
最新回答 / 小虾米爱上大猫咪
Python 3*>>> age = 8>>> if(age >= 6):... print('teenager')... elif(age >= 18):... print('adult')... else:print('kid')...teenager
2019-05-06
最新回答 / virtual_webwei
Eclipse with PyDevKomodo EditVim Sublime TextPycharmEmacsWingPyscripter
2019-05-05
最赞回答 / 该用户暂未设置昵称
你在suffer后面多写了个单引号,参考代码:print r'''"To be,or not to be":that is the question.Whether it's nobler in the mind to suffer.'''
2019-05-01