为什么我会收到错误“TypeError:coercing to Unicode:need string or buffer,int found”?

时间:2012-06-09 04:55:00

标签: python unicode

运行这个小程序后:

#!/usr/bin/env python2.7
# -*-coding:utf-8 -*
a = 1
b = 2
c = 3
title = u"""a=""" + a + u""", b=""" + str(b) + \
    u""", c=""" + str(c)
print(title)

我收到以下错误:

u""", c=""" + str(c)
TypeError: coercing to Unicode: need string or buffer, int found

但以下运行得很好!

#!/usr/bin/env python2.7
# -*-coding:utf-8 -*
a = 1
b = 2
c = 3
title = u""", b=""" + str(b) + \
    u""", c=""" + str(c)
print(title)

有人可以解释一下发生了什么吗?

1 个答案:

答案 0 :(得分:39)

您未在a电话中打包str。您需要str(a) a,就像您对b和c所做的那样。