What is the output after typing 10 + 5 into a Python console?

Responses

an error message because the console is for output

an error message because the print statement is missing

10 + 5 = 15

15

1 answer

The output after typing 10 + 5 into a Python console will be:

15

In a Python interactive console, simply typing an expression will evaluate it and display the result.