diff options
| -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 | 
