12.07.2015 Views

Is Python a

Is Python a

Is Python a

SHOW MORE
SHOW LESS
  • No tags were found...

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

ChapterCHAPTER1212if Tests 12This chapter presents the <strong>Python</strong> if statement, which is the main statement used forselecting from alternative actions based on test results. Because this is our first indepthlook at compound statements—statements that embed other statements—wewill also explore the general concepts behind the <strong>Python</strong> statement syntax modelhere in more detail than we did in the introduction in Chapter 10. And, because theif statement introduces the notion of tests, this chapter will also deal with Booleanexpressions, and fill in some details on truth tests in general.if StatementsIn simple terms, the <strong>Python</strong> if statement selects actions to perform. It’s the primaryselection tool in <strong>Python</strong>, and represents much of the logic a <strong>Python</strong> programpossesses. It’s also our first compound statement. Like all compound <strong>Python</strong> statements,the if statement may contain other statements, including other ifs. In fact,<strong>Python</strong> lets you combine statements in a program sequentially (so that they executeone after another), and in an arbitrarily nested fashion (so that they execute onlyunder certain conditions).General FormatThe <strong>Python</strong> if statement is typical of if statements in most procedural languages. Ittakes the form of an if test, followed by one or more optional elif (“else if”) tests,and a final optional else block. The tests and the else part each have an associatedblock of nested statements, indented under a header line. When the if statementruns, <strong>Python</strong> executes the block of code associated with the first test that evaluates totrue, or the else block if all tests prove false. The general form of an if statementlooks like this:if :elif :# if test# Associated block# Optional elifs236

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!