import math class Vector2D: """A two-dimensional vector with Cartesian coordinates.""" def __init__(self, x, y): self.x, self.y = x, y def __str__(self): ...
確定! 回上一頁