We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8421b8a commit 833252bCopy full SHA for 833252b
3_advanced/chapter13/examples/vector.py
@@ -7,7 +7,7 @@ class Vector:
7
"""
8
9
def __init__(self, vals):
10
- self.vals = vals # Notice! We are using the keyword self to create a field or property (for Javascript users)
+ self.vals = vals # We're using the keyword self to create a field/property
11
print("Assigned values ", vals, " to vector.")
12
13
0 commit comments