diff options
author | Angeo Rohit <angelorohit@gmail.com> | 2020-10-01 01:03:57 +0800 |
---|---|---|
committer | Angeo Rohit <angelorohit@gmail.com> | 2020-10-01 01:03:57 +0800 |
commit | 141eaec78c00a71630261a25b02306dc113c83af (patch) | |
tree | 829a78b0093d411530d24145a7a9393da62e4c64 /python.html.markdown | |
parent | dd6624856b90261163d50675a8d777173670c64d (diff) |
[python/en] Update class example on invoking static methods from class instance.
Diffstat (limited to 'python.html.markdown')
-rw-r--r-- | python.html.markdown | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/python.html.markdown b/python.html.markdown index 27b2b22a..2fc266eb 100644 --- a/python.html.markdown +++ b/python.html.markdown @@ -773,9 +773,8 @@ if __name__ == '__main__': # Call the static method print(Human.grunt()) # => "*grunt*" - # Cannot call static method with instance of object - # because i.grunt() will automatically put "self" (the object i) as an argument - print(i.grunt()) # => TypeError: grunt() takes 0 positional arguments but 1 was given + # Static methods can be called by instances too + print(i.grunt()) # => "*grunt*" # Update the property for this instance i.age = 42 |