This is a general list of interesting and/or useful Python materials. If you find useful stuff that isn’t on the list, please suggest it to the instructor or the TA …
help("topic")
in Python will give you information about any Python function, class, etc.. Unfortunately you have to know what to ask: for example, help("power")
doesn’t work but help("pow")
does (because the Python function for raising a number to a power is pow()
, not power()
).