Keywords Flashcards
and
this is used when assessing truth to see if two values apply. It results in True only when both operands are true.
del
this is used to delete an object
from
this is used when importing specific functions from a module
not
this is used with truth assessments to specify the negative of the conditions (e.g. to invert the truth value)
while
used for loops that continue until a condition is no longer met (or goes on forever)
as
used to import a module as something else, under a different name
elif
in conjunction with an if statement and followed by an else statement, used for assessing conditions
global
this can be used in functions in order to modify a variable outside of the function - initialize the variable as global within the function once, then use it and it will update the variable throughout the program
or
used when comparing conditions (i.e. this or this) - it results to true if any of the operands are true
with
used to pair up lines of code - can help to close files (not super clear on this one)
assert
this is used to test assumptions. If the test isnt met then it returns an AssertionError
else
used with if statements to specify another condition that would result in set actions
if
used to test a condition and then carry out a specific action if that condition is met
pass
used when something is required syntaxically but the code doesnt need to do anything
yield
like a return statement in a function, yield returns a generator
break
used to end a loop
except
used with try to catch exception errors
import
used to import modules that can be used in a program
used to display text on the screen
class
used to define a class which includes multiple definitions for an object
exec
used to execute code stored in a string
in
used to test if a value is in a sequence like a list or string (e.g. if “5” in numbers)
raise
similar to except, this is used to raise an error (Im not quite sure how they differ)
continue
continues from the beginning of the loop. unlike pass, continue starts the loop over, while pass simply does nothing and the next line of code is executed
finally
used with try, except, else blocks in order to clean up resources at the end (not sure what this means)
is
returns true if two objects are the same, false if they are not
return
returns a value from a function to be used outside of the function
def
defines a function that can be used throughout the program
for
starts a for loop which iterates over a set
lambda
anonymous, inline function - seems useful for quick functions example: a = lambda x: x*2 for i in range(1,6): print(a(i))
try
this is used with except and raise in order to catch exceptions in code that could otherwise crash the code