print(<expr>, <expr>, ..., <expr>, end="\n")
SyntaxError: invalid syntax
print("The answer is", end=" ")
print(3 + 4)
SyntaxError: multiple statements found while compiling a single statement
Expected output:
The answer is 7
print("The answer is", end=" ")
The answer is print(3 + 4)
7