Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
Start a free Courses trial
to watch this video
We can give our class some special abilities by defining methods for it.
You don't have to call the instance argument self
if you don't want to. It's not a required name but it's a very common convention (I don't think I've ever seen code that didn't).
class Thief:
sneaky = True
def pickpocket(instance):
if instance.sneaky:
return bool(random.randint(0, 1))
return False
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign upRelated Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up