Is it big?
This page needs a recent browser (with SharedArrayBuffer support). Please update Chrome, Edge, Firefox or Safari to the latest version.
This one builds on a lesson you haven't finished yet. Do that lesson first:
Python Basics · Making decisions →
Is it big?
n is 120. Print big only when n is more than 100. Print nothing otherwise.
One if, nothing else. The line that asks the question ends with a colon :, and the line that happens when the answer is yes is indented underneath it.
n is 120. Print big only when n is more than 100. Print nothing otherwise.
Click Run to see the output here.