I heard the call for the P3K PEP April deadline, so I thought I better get this sent off!<br><br>When I was first exposed to Python, I was delighted that I could do the following;
<br><span style="font-family: courier new,monospace;">>>> "Hello" ' world'</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">    'Hello world'
<br></span>This turned to confusion when I tried;<span style="font-family: courier new,monospace;"><br>>>> domain = " world"<br>>>> "hello" domain<br>Syntax Error ... Invalid Syntax</span>

<br><br>My proposal for Python3K is to allow string-concatenation via juxtaposition between string-literals, string-variables and expressions that evaluate to strings.<br>Juxtaposition has some precedence in Python (the example above) and also in the awk programming language.
<br><br>If anyone agrees that this is a good idea, then I'd be happy to write up a PEP explaining why I think that implicit string concatenation is better than overloading the plus operator (which this proposal wouldn't deprecate) and more elegant than template strings or string interpolation.
<br><br>Eoghan<br><br><br><span style="font-family: courier new,monospace;"></span>