鱼C论坛

 找回密码
 立即注册
查看: 815|回复: 1

[已解决]为什么返回(20.0,15.0)程序怎么运行

[复制链接]
发表于 2021-8-2 20:54:11 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
class Vector2(object):
    def __init__(self, x=0.0, y=0.0):
        self.x = x
        self.y = y
    def __str__(self):
        return "(%s, %s)"%(self.x, self.y)

    @classmethod
    def from_points(cls, P1, P2):
        return cls( P2[0] – P1[0], P2[1] – P1[1] )
A = (10.0, 20.0)
B = (30.0, 35.0)
AB = Vector2.from_points(A, B)
print AB
最佳答案
2021-8-2 21:08:21
class Vector2(object):
    def __init__(self, x=0.0, y=0.0):  # 调用第二步给self.x, self.y赋值
        self.x = x
        self.y = y

    def __str__(self):     # 当 print 该实例时调用 ,返回
        return "(%s, %s)" % (self.x, self.y)

    @classmethod
    def from_points(cls, P1, P2):
        return cls(P2[0]-P1[0], P2[1] - P1[1])  # 第一步这个 将A B 变为(20。0,15.0)


A = (10.0, 20.0)
B = (30.0, 35.0)
AB = Vector2.from_points(A, B)  # 调用函数cls
print(AB)  # 这时调用AB的__str__方法 第三步
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-8-2 21:08:21 | 显示全部楼层    本楼为最佳答案   
class Vector2(object):
    def __init__(self, x=0.0, y=0.0):  # 调用第二步给self.x, self.y赋值
        self.x = x
        self.y = y

    def __str__(self):     # 当 print 该实例时调用 ,返回
        return "(%s, %s)" % (self.x, self.y)

    @classmethod
    def from_points(cls, P1, P2):
        return cls(P2[0]-P1[0], P2[1] - P1[1])  # 第一步这个 将A B 变为(20。0,15.0)


A = (10.0, 20.0)
B = (30.0, 35.0)
AB = Vector2.from_points(A, B)  # 调用函数cls
print(AB)  # 这时调用AB的__str__方法 第三步
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-13 22:36

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表