Hello world—conditions apply
OK, time for the first programme. This one is a simple print statement that prints something given that a condition is true.
>>> facingEast = True >>> if facingEast: ... print("Hello, world\nHow is it going?") ...
Which gives the output
Hello, world How is it going?












