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.
Simple: