To nest a conditional like if cart < 100:, we indent it two spaces away from the beginning of the function.
if cart < 100:
Make sure to pick if, followed by cart < 100, and finally :.
if
cart < 100
: