我有以下代码
Test1 = Price[Product.index(TestABC)]+ AddQTYPriceA
print Test1
print "try this test" + Test1
当它需要打印测试 1 时,它会给出正确的答案。我想尝试在它的前面添加文本,所以我输入了 print "try this test" + Test1
对于第二个打印命令,它给出以下错误。
Traceback (most recent call last):
File "C:\Python26\data.py", line 78, in <module>
print "try this test" + Test1
TypeError: cannot concatenate 'str' and 'float' objects
有人可以帮助我如何让文字出现在前面。
格雷吉 D