File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -63,12 +63,12 @@ Let's use it to define an empty class.
6363>> >
6464```
6565
66- ** _ Note _ :** If you are using Python 2 I highly recommend using
66+ _ ** Note :** If you are using Python 2 I highly recommend using
6767` class Website(object): ` instead of ` class Website: ` . This creates a
6868new-style class instead of an old-style class. Old-style classes are
6969different than new-style classes in some ways and not supported in this
7070tutorial. In Python 3, there are no old-style classes and
71- ` class Website(object): ` does the same thing as ` class Website: ` .
71+ ` class Website(object): ` does the same thing as ` class Website: ` ._
7272
7373Note that I named the class ` Website ` , not ` website ` . This way we know
7474that it's a class. Built-in classes use lowercase names (like ` str `
You can’t perform that action at this time.
0 commit comments