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 f90305e commit 2022320Copy full SHA for 2022320
3_advanced/chapter13/examples/vector.py
@@ -13,10 +13,10 @@ def __init__(self, vals):
13
print("Assigned values ", vals, " to vector.")
14
15
"""
16
- String Function
+ String Function
17
18
- Converts the object to a string in readable format for programmers
19
- """
+ Converts the object to a string in readable format for programmers
+ """
20
21
def __str__(self):
22
return str(self.vals) # Returns the contents of the vector
0 commit comments