The 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?
(1 point)
Responses
print(10 “is the result.”)
print(10 “is the result.”)
print(10, is the result.”)
print(10, is the result.”)
print(10, “is the result.)
print(10, “is the result.)
print(10, “is the result.”)
1 answer