DeveloperBreeze

Class with Method

python
class Person:
    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.'

# Create an instance of Person
person = Person('Alice', 25)

# Call the greet method and store the result in 'greeting'
greeting = person.greet()

Related Posts

More content you might like

Code
php

PHP Class and Object Example

No preview available for this content.

Jan 26, 2024
Read More
Code
javascript

JavaScript Class with Constructor and Method

No preview available for this content.

Jan 26, 2024
Read More

Discussion 0

Please sign in to join the discussion.

No comments yet. Be the first to share your thoughts!