Quiz

0 / 4
Complete the quiz.
The following program will output the number 10:

5 + 5

To make a single-line comment, put triple quotes at the beginning of the line like this:

'''this is a single line comment

The following code is valid:

x = 10
5 = y
print(y)

The following code will output the number 11:

x = 3
y = 5
z = 3 + x + y
print(z)

Sort by:
    By clicking "Accept all cookies", you agree Codeonthecob can use cookies in accordance with our Privacy Policy.