Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lernen Defining Methods | OOP project
Best Practices: Python OOP

book
Defining Methods

A class can also have methods, which are functions that are associated with a class. Methods are defined just like functions, but are indented within the class definition and take the self argument as their first parameter.

Aufgabe

Swipe to start coding

  1. Create a new method called bark;
  2. Access the name attribute inside the method.

Lösung

class Dog:
def __init__(self, name, breed):
self.name = name
self.breed = breed

def bark(self):
print(f"{self.name} says Woof!")

Mark tasks as Completed
War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

Abschnitt 1. Kapitel 5

Fragen Sie AI

expand
ChatGPT

Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen

some-alt