Learn Special Methods by Building a Vector Space - Step 6

Tell us what’s happening:

I don‘t know if my calculation is wrong or if I‘m missing something so I hope someone can help me.

Your code so far


# User Editable Region

class Vector:
    def __init__(self, x, y):
        self.x = x
        self.y = y
        
    def norm(self):
        return (self.x**2 + self.y**2) **0,5

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Safari/605.1.15

Challenge Information:

Learn Special Methods by Building a Vector Space - Step 6

is this the thing you want to write?

Omg I‘m so stupid thank you