Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

python: cannot concatenate 'str' and 'tuple' objects (it should works!)

I have a code:

print "bug " + data[str.find(data,'%')+2:-1]
temp = data[str.find(data,'%')+2:-1]
time.sleep(1)
print "bug tuple " + tuple(temp.split(', '))

And after this my application displays:

bug 1, 2, 3 Traceback (most recent call last): File "C:\Python26\Lib\site-packages\pythonwin\pywin\framework\scriptutils.py", line 312, in RunScript exec codeObject in main.dict File "C:\Documents and Settings\k.pawlowski\Desktop\atsserver.py", line 165, in print "bug tuple " + tuple(temp.split(', ')) TypeError: cannot concatenate 'str' and 'tuple' objects

I don't know what I make wrong. print tuple('1, 2, 3'.split(', ')) works properly.

like image 790
CarolusPl Avatar asked Aug 31 '10 13:08

CarolusPl


3 Answers

Why do you think it should work?

try:

print "bug tuple " + str(tuple(temp.split(', ')))
like image 23
Maciej Kucharz Avatar answered Nov 08 '22 12:11

Maciej Kucharz


Change it to

print "bug tuple ", tuple(temp.split(', '))
like image 20
Moe Avatar answered Nov 08 '22 13:11

Moe


print tuple(something)

may work because print will do an implicit str() on the argument, but and expression like

"" + ()

does not work. The fact that you can print them individually doesn't make a difference, you can't concatenate a string and a tuple, you have to convert either one of them. I.e.

print "foo" + str(tuple("bar"))

However, depending on str() for conversion probably won't give the desired results. Join them neatly using a separator using ",".join for example

like image 145
Ivo van der Wijk Avatar answered Nov 08 '22 13:11

Ivo van der Wijk