Notes

-def = define, used to create parameters and functions in python.

-sequence = college board vocab for many lines of code in an order.

-static text = text that doesn't change.

ex:print("helloWorld") > in this case, helloWorld is the static text, it doesn't change.

-import = imports commands that other people develop.

ex:import getpass sys -if statements are used in python to evaluate a correct or incorrect response. ex:if rsp == "2"> print (rsp + " is right!") correct += 1 else:print(rsp + " is WRONG! :< ") -rsp is used in if statements, represents "response"