├── .gitignore ├── Abstract Classes.ipynb ├── Attributes.ipynb ├── Inheritance.ipynb ├── Licence.md ├── Magic Methods.ipynb ├── My First Class.ipynb ├── Object-Oriented Code Design Principles.ipynb ├── Object-Oriented Python Slides.pptx ├── Objects in Objects.ipynb ├── Polymorphism.ipynb ├── Projects.ipynb ├── Properties.ipynb ├── README.md ├── Types and Objects.ipynb ├── inheritance_dog.png └── inheritance_shapes.png /.gitignore: -------------------------------------------------------------------------------- 1 | ~$* 2 | *.svg 3 | /.vscode 4 | /.ipynb_checkpoints -------------------------------------------------------------------------------- /Abstract Classes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/RCDS-object-oriented-python/HEAD/Abstract Classes.ipynb -------------------------------------------------------------------------------- /Attributes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/RCDS-object-oriented-python/HEAD/Attributes.ipynb -------------------------------------------------------------------------------- /Inheritance.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/RCDS-object-oriented-python/HEAD/Inheritance.ipynb -------------------------------------------------------------------------------- /Licence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/RCDS-object-oriented-python/HEAD/Licence.md -------------------------------------------------------------------------------- /Magic Methods.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/RCDS-object-oriented-python/HEAD/Magic Methods.ipynb -------------------------------------------------------------------------------- /My First Class.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/RCDS-object-oriented-python/HEAD/My First Class.ipynb -------------------------------------------------------------------------------- /Object-Oriented Code Design Principles.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/RCDS-object-oriented-python/HEAD/Object-Oriented Code Design Principles.ipynb -------------------------------------------------------------------------------- /Object-Oriented Python Slides.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/RCDS-object-oriented-python/HEAD/Object-Oriented Python Slides.pptx -------------------------------------------------------------------------------- /Objects in Objects.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/RCDS-object-oriented-python/HEAD/Objects in Objects.ipynb -------------------------------------------------------------------------------- /Polymorphism.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/RCDS-object-oriented-python/HEAD/Polymorphism.ipynb -------------------------------------------------------------------------------- /Projects.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/RCDS-object-oriented-python/HEAD/Projects.ipynb -------------------------------------------------------------------------------- /Properties.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/RCDS-object-oriented-python/HEAD/Properties.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/RCDS-object-oriented-python/HEAD/README.md -------------------------------------------------------------------------------- /Types and Objects.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/RCDS-object-oriented-python/HEAD/Types and Objects.ipynb -------------------------------------------------------------------------------- /inheritance_dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/RCDS-object-oriented-python/HEAD/inheritance_dog.png -------------------------------------------------------------------------------- /inheritance_shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImperialCollegeLondon/RCDS-object-oriented-python/HEAD/inheritance_shapes.png --------------------------------------------------------------------------------