File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -63,12 +63,12 @@ Let's use it to define an empty class.
63
63
>> >
64
64
```
65
65
66
- ** _ Note _ :** If you are using Python 2 I highly recommend using
66
+ _ ** Note :** If you are using Python 2 I highly recommend using
67
67
` class Website(object): ` instead of ` class Website: ` . This creates a
68
68
new-style class instead of an old-style class. Old-style classes are
69
69
different than new-style classes in some ways and not supported in this
70
70
tutorial. 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: ` ._
72
72
73
73
Note that I named the class ` Website ` , not ` website ` . This way we know
74
74
that it's a class. Built-in classes use lowercase names (like ` str `
You can’t perform that action at this time.
0 commit comments