Frameworks 002 Flashcards
What are Conditions(similar to boolean)
Condititons can be TRUE or FALSE
What are 3 conditions that are typically used in coding
|if|elif|else| OR |if|else if|else|
What is the better alternative to if statements
match case is where you give specific values to a serius of cases where _ acts as the else
How does iteration work in list serching
iteration work by checking every given option until it finds the one that matches the given one then returns it
How do you do iteration in coding
the ways to implement iteration in coding is by using while and for loops
what does a for loop do
Sets a value and goes thought the code until there is no more values to look for
What does a for loop do
Runs until a set condition is met
What are nested loops
Loops within loops
What do enumerate()
lets you see what iteration you are on at the moment
What do break and continue do in loops
stop and continue the loop