The correct line that will not result in a syntax error is:
print(10, "is the result.")
which of these lines will not result in a syntax error?
print(10 "is the result.")
print(10, is the result.")
print(10, "is the result.)
print(10, "is the result.")
1 answer