9: Object-Oriented Programming Flashcards
tuple
classes
docs.python.org/3/tutorial/classes.html
class
objects
attributes
instance variables
methods
instance methods
_ init _
raise
_ str _
properties
@property
decorators
int
docs.python.org/3/library/functions.html#int
class int(x, base=10)
str
docs.python.org/3/library/stdtypes.html#str
class str(object=’ ‘)
str.lower()
str.strip([chars])
list
docs.pyton.org/3/library/stdtypes.html#list
docs.python.org/3/tutorial/datastructures.html
class list ([iterable])
list.append(x)
dict
docs.python.org/3/library/stdtypes.html#dict
class methods
@classmethod
static methods
@staticmethod
inheritance
docs.python.org/3/library/exceptions.html
BaseException
+– Keyboard Interrupt
+– Exception
+– ArithmeticError
| +– ZeroDivisionError
+– AssertionError
+– AttributeError
+– EOFError
+– ImportError
| +– ModuleNotFoundError
+– LookupError
| +– KeyError
+– NameError
+– SyntaxError
| +– IndentationError
+– ValueError
operator overloading
docs.python.org/3/reference/datamodel.html#special-method-names
object.add(self, other)