How should this function be changed to return \"123456\"?
\"123456\"
def f(): s = \"\"\"123 456\"\"\" return s
UPDATE: Everyo
textwrap.dedent("""\ 123 456""")
From the standard library. First "\" is necessary because this function works by removing the common leading whitespace.