Conditionals: if - else



examples/basics/if_else.py
def main():
    expected_answer = "42"
    inp = input('What is the answer? ')

    if inp == expected_answer:
        print("Welcome to the cabal!")
    else:
        print("Read the Hitchhiker's guide to the galaxy!")

    print("This always happens")

main()