How should this function be changed to return \"123456\"?
\"123456\"
def f(): s = \"\"\"123 456\"\"\" return s
UPDATE: Everyo
def f(): s = """123\ 456""" return s
Don't indent any of the blockquote lines after the first line; end every line except the last with a backslash.