Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been using Perl for some time and have gotten used to the syntax:

return "$var1$var2";

for easily returning a concatenation of two strings in one step. Is there a way to do something similar in Python? I'd love to avoid doing it in two steps, if possible.

share|improve this question

3 Answers

up vote 11 down vote accepted

Simple:

>>> "a" + "b"
'ab'
>>> "%s%s" % ("a", "b")
'ab'
>>> "{a}{b}".format(a="a", b="b")
'ab'
>>> "{}{}".format("a", "b")
'ab'
>>> "{0}{1}".format("a", "b")
'ab'
>>> "a" "b"
'ab'
>>> "".join(("a", "b"))
'ab'
share|improve this answer
A minor addition -- adjacent string literals are concatenated at compile time: >>> "a" "b" => 'ab'. – senderle Jun 14 '11 at 4:05
Totally overkill, and totally informative! =) – Chris Cooper Jun 14 '11 at 4:07
@senderle nice addition :) – bradley.ayers Jun 14 '11 at 4:07
>>>var1 = "a" >>>var2 = var1 += "b" >>>var 2 #"ab" – Trufa Jun 14 '11 at 4:11
Awesome. Thanks. – Eli Jun 14 '11 at 4:36
show 1 more comment

I don't see how addition is two steps.

return var1 + var2
share|improve this answer

just use +.

def f():
    a = 'aaa'
    b = 'bbb'
    return a + b
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.