Skip to content

Commit 2022320

Browse files
authored
Update vector.py
1 parent f90305e commit 2022320

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

3_advanced/chapter13/examples/vector.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ def __init__(self, vals):
1313
print("Assigned values ", vals, " to vector.")
1414

1515
"""
16-
String Function
16+
String Function
1717
18-
Converts the object to a string in readable format for programmers
19-
"""
18+
Converts the object to a string in readable format for programmers
19+
"""
2020

2121
def __str__(self):
2222
return str(self.vals) # Returns the contents of the vector

0 commit comments

Comments
 (0)