{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"\n",
"# Conditionals and Loops\n",
"\n",
"Computer programs are useful for performing repetitive tasks. Without\n",
"complaining, getting bored, or growing tired, they can repetitively\n",
"perform the same calculations with minor, but important, variations over\n",
"and over again. Humans share with computers none of these qualities. And\n",
"so we humans employ computers to perform the massive repetitive tasks we\n",
"would rather avoid. However, we need efficient ways of telling the\n",
"computer to do these repetitive tasks; we don't want to have stop to\n",
"tell the computer each time it finishes one iteration of a task to do\n",
"the task again, but for a slightly different case. We want to tell it\n",
"once, \"Do this task 1000 times with slightly different conditions and\n",
"report back to me when you are done.\" This is what **loops** were made\n",
"for.\n",
"\n",
"In the course of doing these repetitive tasks, computers often need to\n",
"make decisions. In general, we don't want the computer to stop and ask\n",
"us what it should do if a certain result is obtained from its\n",
"calculations. We might prefer to say, \"Look, if you get result A during\n",
"your calculations, do this, otherwise, do this other thing.\" That is, we\n",
"often want to tell the computer ahead of time what to do if it\n",
"encounters different situations. This is what **conditionals** were made\n",
"for.\n",
"\n",
"Conditionals and loops control the flow of a program. They are essential\n",
"to performing virtually any significant computational task. Python, like\n",
"most computer languages, provides a variety of ways of implementing\n",
"loops and conditionals.\n",
"\n",
"single: conditionals\n",
"\n",
"Conditionals\n",
"------------\n",
"\n",
"Conditional statements allow a computer program to take different\n",
"actions based on whether some condition, or set of conditions is true or\n",
"false. In this way, the programmer can control the flow of a program.\n",
"\n",
"### `if`, `elif`, and `else` statements\n",
"\n",
"The `if`, `elif`, and `else` statements are used to define conditionals\n",
"in Python. We illustrate their use with a few examples.\n",
"\n",
"#### `if`-`elif`-`else` example\n",
"\n",
"Suppose we want to know if the solutions to the quadratic equation\n",
"\n",
"$$ax^2 + bx + c = 0$$\n",
"\n",
"are real, imaginary, or complex for a given set of coefficients $a$,\n",
"$b$, and $c$. Of course, the answer to that question depends on the\n",
"value of the discriminant $d=b^2-4ac$. The solutions are real if\n",
"$d \\ge 0$, imaginary if $b=0$ and $d < 0$, and complex if $b \\ne 0$ and\n",
"$d < 0$. The program below implements the above logic in a Python\n",
"program.\n",
"\n",
"``` python\n",
"a = float(raw_input(\"What is the coefficients a? \"))\n",
"b = float(raw_input(\"What is the coefficients b? \"))\n",
"c = float(raw_input(\"What is the coefficients c? \"))\n",
"\n",
"d = b*b - 4.*a*c\n",
"\n",
"if d >= 0.0:\n",
" print(\"Solutions are real\") # block 1\n",
"elif b == 0.0:\n",
" print(\"Solutions are imaginary\") # block 2\n",
"else:\n",
" print(\"Solutions are complex\") # block 3\n",
"\n",
"print(\"Finished!\")\n",
"```\n",
"\n",
"After getting the inputs of from the user, the program evaluates the\n",
"discriminant $d$. The code `d >= 0.0` has a boolean truth value of\n",
"either `True` or `False` depending on whether or not $d \\ge 0$. You can\n",
"check this out in the interactive IPython shell by typing the following\n",
"set of commands\n",
"\n",
"``` ipython\n",
"In [2]: d = 5\n",
"\n",
"In [3]: d >= 2\n",
"Out[3]: True\n",
"\n",
"In [4]: d >= 7\n",
"Out[4]: False\n",
"```\n",
"\n",
"Therefore, the `if` statement in line 7 is simply testing to see if the\n",
"statement `d >= 0.0` if `True` or `False`. If the statement is `True`,\n",
"Python executes the indented block of statements following the `if`\n",
"statement. In this case, there is only one line in indented block. Once\n",
"it executes this statement, Python skips past the `elif` and `else`\n",
"blocks and executes the `print(\"Finished!\")` statement.\n",
"\n",
"If the `if` statement in line 7 is `False`, Python skips the indented\n",
"block directly below the `if` statement and executes the `elif`\n",
"statement. If the condition `b == 0.0` is `True`, it executes the\n",
"indented block immediately below the `elif` statement and then skips the\n",
"`else` statement and the indented block below it. It then executes the\n",
"`print(\"Finished!\")` statement.\n",
"\n",
"Finally, if the `elif` statement is `False`, Python skips to the `else`\n",
"statement and executes the block immediately below the `else` statement.\n",
"Once finished with that indented block, it then executes the\n",
"`print(\"Finished!\")` statement.\n",
"\n",
"As you can see, each time a `False` result is obtained in an `if` or\n",
"`elif` statement, Python skips the indented code block associated with\n",
"that statement and drops down to the next conditional statement, that\n",
"is, the next `elif` or `else`. A flowchart of the if-elif-else code is\n",
"shown below.\n",
"\n",
"if
-elif
-else
code.if
-else
code.if
code.
operator | \n", ">function | \n", ">
---|---|
< | \n", ">less than | \n", ">
<= | \n", ">less than or equal to | \n", ">
> | \n", ">greater than | \n", ">
>= | \n", ">greater than or equal to | \n", ">
== | \n", ">equal | \n", ">
!= | \n", ">not equal | \n", ">
and | \n",
"> both must be true | \n", ">
or | \n",
"> one or both must be true | \n", ">
not | \n",
"> reverses the truth value | \n", ">
for
-loop.while
loop.