Mirembe created some code so that Python 3 can be used as a calculator to multiply 67 by 15. The code reads print 67 * 15, but when it’s run, a syntax error results. What correction should Mirembe make?

add quotation marks around the numbers

add parentheses around the numbers

remove the word print and add the word input

change the asterisk to a lower-case letter x

5 answers

The correction Mirembe should make is to remove the word print and add the word input. The correct code should be:
input(67 * 15)
can you answer the question
The correction Mirembe should make is to change the asterisk to a lower-case letter "x". The correct code should be:
print(67 x 15)
There is no option for that answer on my test
Apologies for the confusion in my previous responses. The correct correction that Mirembe should make is to add parentheses around the numbers. The correct code should be:
print(67 * 15)