为了账号安全,请及时绑定邮箱和手机立即绑定

print '\n'.join(tds) 为啥报错

Traceback (most recent call last):
  File "index.py", line 10, in 
    print '\n'.join(tds)
TypeError: sequence item 0: expected string, function foundNameScore


正在回答

1 回答

d = { 'Adam': 95, 'Lisa': 85, 'Bart': 59 }

def generate_tr(name, score):

    if score < 60:

        return '<tr><td>%s</td><td style="color:red">%s</td></tr>' % (name, score)

    return '<tr><td>%s</td><td>%s</td></tr>' % (name, score)

tds = [generate_tr(name, score) for name, score in d.iteritems()]

print '<table border="1">'

print '<tr><th>Name</th><th>Score</th><tr>'

print '\n'.join(tds)

print '</table>'

你试一下用这个代码随后再理解一下

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
初识Python
  • 参与学习       758625    人
  • 解答问题       8667    个

学python入门视频教程,让你快速入门并能编写简单的Python程序

进入课程

print '\n'.join(tds) 为啥报错

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信