<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># Try some of these values for condition and see whether the code within the if
# statement runs
#condition = True
condition = False
# condition = 0
# condition = 5000
# condition = ''
# condition = 'some non-empty string'

# ... potentially some code to be executed ...
print('this line will always be executed')

if condition:
    # some code which will only execute if condition evaluates to True
    print('this line will only be executed if condition evalutes to True')
    print('try set condition to False and see for yourself that these lines '
          'don\'t run')
else:
    print('you\'ll only see this if condition evaluates to False')

# ... some more code to be executed ...
print('this line will also always be executed')
</pre></body></html>