Files
freeCodeCamp/curriculum/challenges/english/blocks/object-oriented-programming-with-python/object-functions-video.md
2026-03-17 13:16:49 +01:00

1.2 KiB

id, title, challengeType, videoId, dashedName
id title challengeType videoId dashedName
697fe3cb32baa3841ab62a63 Object Functions 11 3Mla2uUDSu8 object-functions

--description--

In this video, you will learn how to work with functions inside of classes.

--questions--

--text--

Which of the following is the correct way to create a function inside of a class?

--answers--

class Student:
    def __init__(self, name, age):
        self.name = name
        self.age = age

    def greet(self.function):
        return f"Hello, my name is {self.name} and I am {self.age} years old."

class Student:
    def __init__(self, name, age):
        self.name = name
        self.age = age

    def greet(self):
        return f"Hello, my name is {self.name} and I am {self.age} years old."

class Student:
    def __init__(self, name, age):
        self.name = name
        self.age = age

    def greet(self):
        self.pass

class Student:
    def __init__(self, name, age):
        self.name = name
        self.age = age

    greet = (self):
        return f"Hello, my name is {self.name} and I am {self.age} years old."

--video-solution--

2