Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Notes/04_Classes_objects/03_Special_methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ A method that has not yet been invoked by the function call operator `()` is kno
It operates on the instance where it originated.

```python
>>> s = Stock('GOOG', 100, 490.10) >>> s
>>> s = Stock('GOOG', 100, 490.10)
>>> s
<Stock object at 0x590d0>
>>> c = s.cost
>>> c
Expand Down