Back to Freecodecamp

Object Functions

curriculum/challenges/english/blocks/object-oriented-programming-with-python/object-functions-video.md

latest1.0 KB
Original Source

--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--

python
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."

python
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."

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

    def greet(self):
        self.pass

python
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