Flow control Flashcards
What is “Flow control”
Flow control statements can decide which Python instructions to execute under which conditions.
What is the Boolean Value?
True or False and they always start with a capital T and F
When do you get error while using boolean values?
➊. If you don’t use the proper case
➋ or you try to use True and False for variable names
what do comparison operators do?
compare two values and evaluate down to a single Boolean value.
What is the other name of comparison operators?
relational operators,
What is the comparison operators for
“Equal to”
==
What is the comparison operators for
Not equal to
!=
What is the comparison operators for
Less than
What is the comparison operators for
Greater than
>
What is the comparison operators for
Less than or equal to
<=
What is the comparison operators for
Greater than or equal to
> =
What is the output of 42 == ‘42’ ? Why?
False, because and int or float are not equal to string
what is the output of 42 == 42.0?
True
what is the name and difference of == and =
The == operator (equal to) asks whether two values are the same as each other.
The = operator (assignment) puts the value on the right into the variable on the left.
What are the Boolean Operators?
and
or
no
Why are the and and or binary operators?
The and and or operators always take two Boolean values (or expressions), so they’re considered binary operators.
The and and or Operator’s Truth Table: True and True ? True and False ? False and True ? False and False ? True or True ? True or False ? False or True ? False or False ?
True False False False True True True False
Why is not operator a unary operator
Unlike and and or, the not operator operates on only one Boolean value (or expression). This makes it a unary operator
The not Operator’s Truth Table:
Expression Evaluates to . . .
not True ?
not False ?
False
True
Example of Mixing Boolean and Comparison Operators
> > > (4 < 5) and (5 < 6)
True
2 + 2 == 4 and not 2 + 2 == 5 and 2 * 2 == 2 + 2
True
what is the order of operations for the Boolean operators
math comparison operators not and or
What are the Elements of Flow Control?
condition and block of code (clause)
What is a block of code?
Blocks begin when the indentation increases.
Blocks can contain other blocks.
Blocks end when the indentation decreases to zero or to a containing block’s indentation.
Example of an if statement? Explain the component
if name == ‘Alice’:
print(‘Hi, Alice.’)
1. The if keyword
2. A condition (that is, an expression that evaluates to True or False)
3. A colon
4. Starting on the next line, an indented block of code (called the if clause)
what is an else statement?
An if clause can optionally be followed by an else statement
An else statement doesn’t have a condition, and in code, an else statement always consists of the following:
The else keyword
A colon
Starting on the next line, an indented block of code (called the else clause)
What is elif statement?
The elif statement is an “else if” statement that always follows an if or another elif statement. It provides another condition that is checked only if all of the previous conditions were False
In code, an elif statement always consists of the following:
- The elif keyword
- A condition (that is, an expression that evaluates to True or False)
- A colon
- Starting on the next line, an indented block of code (called the elif clause)
what is the limitation of using elif statement?
Once one of the statements’ conditions is found to be True, the rest of the elif clauses are automatically skipped.
What do a while Loop Statements do?
You can make a block of code execute over and over again using a while statement. The code in a while clause will be executed as long as the while statement’s condition is True.
what does a while statement consist of?
The while keyword
A condition (that is, an expression that evaluates to True or False)
A colon
Starting on the next line, an indented block of code (called the while clause)
The while clause is often called the —- or just —– .
while loop
the loop
give an example of a while loop printing “Hello, world!” five times?
spam = 0
if spam < 5:
print(‘Hello, world.’)
spam = spam + 1
what is a break statement?
There is a shortcut to getting the program execution to break out of a while loop’s clause early. If the execution reaches a break statement, it immediately exits the while loop’s clause. ➊ while True: print('Please type your name.') ➋ name = input() ➌ if name == 'your name': ➍ break ➎ print('Thank you!')
How to terminate a program execution immediately?
Ctrl + C
what is a continue statement?
Like break statements, continue statements are used inside loops. When the program execution reaches a continue statement, the program execution immediately jumps back to the start of the loop and reevaluates the loop’s condition. while True: print('Who are you?') name = input() ➊ if name != 'Joe': ➋ continue print('Hello, Joe. What is the password? (It is a fish.)') ➌ password = input() if password == 'swordfish': ➍ break ➎ print('Access granted.')
How to create a condition with and empty variable?
An empty variable is False,
name=””
while not name: # execute while until False, or until name is not empty any more
➋ if numOfGuests:
➌ print(‘Be sure to have enough room for all your guests.’)
what if you want to execute a block of code only a certain number of times?
You can do this with a for loop statement and the range() function.
print(‘My name is’)
for i in range(5):
print(‘Jimmy Five Times (‘ + str(i) + ‘)’)
What is the limitation of continue and break function usage?
We only can use them inside for and while loop
What are the range() arguments?
range(start, stop, step) range(5,-1,-1) 5 4 3 2 1 0
What is importing a module?
If a function is not a built-in function, we need to import it
import random
import random, math, ….
What if we name a python file similar to a function name?
then if we import a module, python import our file instead of the module !!!!
How to get random numbers in a range?
import random
for i in range(5):
print(random.randint(1,10))
How to end a program with sys.exit()
import sys
while True: print('Type exit to exit.') response = input() if response == 'exit': sys.exit() print('You typed ' + response + '.')