Python:TypeError:无法连接‘str’和‘int’对象我有一个python程序,它向整数添加字符串:a = raw_input("Enter a: ")b = raw_input("Enter b: ")print "a + b as strings: " + a + b
a = int(a)b = int(b)c = a + b
str(c)print "a + b as integers: " + c我知道这个错误:Python: TypeError: cannot concatenate 'str' and 'int' objects如何向整数中添加字符串?
3 回答
喵喔喔
TA贡献1735条经验 获得超5个赞
有两种方法可以解决最后一个问题引起的问题。print声明。
属性的结果。str(c)打电话给c正如@jamylak正确显示的那样,然后连接所有字符串,或者可以替换最后一个字符串。print简单地说:
print "a + b as integers: ", c # note the comma here
在这种情况下
str(c)
是不必要的,可以删除。
样本运行输出:
Enter a: 3
Enter b: 7
a + b as strings: 37
a + b as integers: 10
有:
a = raw_input("Enter a: ")
b = raw_input("Enter b: ")
print "a + b as strings: " + a + b # + everywhere is ok since all are strings
a = int(a)
b = int(b)
c = a + b
print "a + b as integers: ", c
添加回答
举报
0/150
提交
取消