copies this vector and returns it.
(self)
| 153 | return Vector(ans) |
| 154 | |
| 155 | def copy(self): |
| 156 | """ |
| 157 | copies this vector and returns it. |
| 158 | """ |
| 159 | components = [x for x in self.__components] |
| 160 | return Vector(components) |
| 161 | |
| 162 | def changeComponent(self, pos, value): |
| 163 | """ |