logo

Crowdly

Browser

Add to Chrome

Milleks kasutatakse Pythoni „magic methods“ ehk maagilisi meetodeid, nagu __str...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

Milleks kasutatakse Pythoni „magic methods“ ehk maagilisi meetodeid, nagu __str__, __eq__, __init__ jms?

class Visitor:

    def __init__(self, name):

        self.name = name

    def __str__(self):

        return f"Visitor: {self.name}"

v = Visitor("Anna")

print(v)

More questions like this

Want instant access to all verified answers on moodle.taltech.ee?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome