Python’s syntax makes it easy to write single-line expressions that
    are overly complicated and difficult to read.
    ✦ Move complex expressions into helper functions, especially if you
    need to use the same logic repeatedly.
    ✦ An if/else expression provides a more readable alternative to using
    the Boolean operators or and and in expressions.