You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In R, the most widely used unit of composition for code is functions, and in Python, it is classes. Classes are how you organize and find methods in Python. This approach to code composition is called object oriented programming (OOP). Let's dive in the details of OOP.
An object is any entity that you want to store and process data about. Each object is an instance of a class in the computer's memory. A class is a template for creating objects. Creating an object from a class is called instantiation. It has properties and methods (functions for the class).
For example, we could have a class called Person. The properties of this class are what describe this Person class:
first_name
last_name
gender
date_of_birth
occupatiaon
The methods of this class are the functions for this Person class:
walk()
run()
sleep()
eat()
Here is a simple Person class for demonstration purposes.
classPerson:
pass# `pass` means do nothing.Person#> <class '__main__.Person'>type(Person)
#> <class 'type'>instance=Person()
instance#> <__main__.Person object at 0x102ba75e0>type(instance)
#> <class '__main__.Person'>
Like the def statement, the class statement is used to create a Python class. First note the strong naming convention, classes are typically CamelCase, and functions are typically snake_case. After defining Person, you can interact with it, and see that it has type 'type'. Calling instance = Person() creates a new object instance of the class, which has type Person (ignore the main. prefix for now).
The text was updated successfully, but these errors were encountered:
@cansavvy Below is the OOP section from #10, which was taken out of that PR. See #10 (comment).
Also, I've made a branch dedicated to OOP:
16-oop
Classes and Object Oriented Programming (OOP)
In R, the most widely used unit of composition for code is functions, and in Python, it is classes. Classes are how you organize and find methods in Python. This approach to code composition is called object oriented programming (OOP). Let's dive in the details of OOP.
An object is any entity that you want to store and process data about. Each object is an instance of a class in the computer's memory. A class is a template for creating objects. Creating an object from a class is called instantiation. It has properties and methods (functions for the class).
For example, we could have a class called Person. The properties of this class are what describe this Person class:
The methods of this class are the functions for this Person class:
Here is a simple Person class for demonstration purposes.
Like the
def
statement, theclass
statement is used to create a Python class. First note the strong naming convention, classes are typically CamelCase, and functions are typically snake_case. After defining Person, you can interact with it, and see that it has type 'type'. Callinginstance = Person()
creates a new object instance of the class, which has typePerson
(ignore the main. prefix for now).The text was updated successfully, but these errors were encountered: