1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 15:18:01 +00:00
Files
til/python/access-instance-variables.md
2020-05-13 11:09:18 -05:00

529 B

Access Instance Variables

You can define instance variables when instantiating a class.

class Person:
    def __init__(self, first_name, last_name):
        self.first_name = first_name
        self.last_name = last_name

    def full_name(self):
        return self.first_name + " " + self.last_name

Then those instance variables can be accessed as properties of that class instances.

me = Person("Josh", "Branchaud")

print(me.first_name) #=> "Josh"
print(me.full_name()) #=> "Josh Branchaud"