私は以下のコードを持っています
Test1 = Price[Product.index(TestABC)]+ AddQTYPriceA
print Test1
print "try this test" + Test1
テスト 1 を印刷する必要がある場合、正しい答えが得られます。その前にテキストを追加したいので、print「このテストを試してください」+ Test1を入力しました
2 番目の印刷コマンドでは、次のエラーが発生します。
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