<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/courses/python-intermediate-en-WL8e4/0/5?curriculum_id=4f89dab3d788890003000096
<In what way does your code behave incorrectly? Include ALL error messages.>
I completed the example, but I was curious why in the dot notation example they did not pass ‘sides’ to init, like we had to do for the example?
<What do you expect to happen instead?>
```pythonclass Square(object):
def init(self):
self.sides = 4
my_shape = Square()
print my_shape.sides
<do not remove the three backticks above>