Python Cheat Sheet
Python Cheat Sheet
STRINGS
LISTS
ABSTRACTION
FUNCTIONS
EXCEPTIONS
Use the raise statement to raise an error you can raise different
exceptions including Exception, IOException etc. Different exception
types are available in module exceptions.
WEBBROWSER
TIME
RANDOM
RE
Regular expressions are for searching for patterns in strings, the use of
pattern formatting can be a useful tool for search utilities etc.
Regular expressions can be used to match more than one string to a
pattern or specify alternatives or even making optional parts to the
pattern.
a wildcard is where the symbol can represent anything for example
li.m would satisfy liam and lism.
to specify alternatives use |. For example python|perl would satisfy
both python and perl.