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)
5 = y
print(y)
The following code will output the number 11:
x = 3
y = 5
z = 3 + x + y
print(z)
y = 5
z = 3 + x + y
print(z)