How should this function be changed to return \"123456\"?
\"123456\"
def f(): s = \"\"\"123 456\"\"\" return s
UPDATE: Everyo
Subsequent strings are concatenated, so you can use:
def f(): s = ("123" "456") return s
This will allow you to keep indention as you like.