Outlier_9 2022-06-04 20:10 采纳率: 100%
浏览 59
已结题

Python类的方法实现复数四则运算

问题遇到的现象和发生背景

用Python类的方法实现复数四则运算

问题相关代码,请勿粘贴截图
class Complex:
    def __init__(self, x, y):
        self.x = x
        self.y = y

    def __add__(self, other):
        return Complex(self.x + other.x, self.y + other.y)

    def __sub__(self, other):
        return Complex(self.x - other.x, self.y - other.y)

    def __mul__(self, other):
        return Complex(self.x * other.x - self.y * other.y, other.x * self.y + self.x * other.y)

    def __truediv__(self, other):
        return Complex((self.x * other.x + self.y * other.y) / (other.x * other.x + other.y * other.y),
                       (other.x * self.y - self.x * other.y) / (other.x * other.x + other.y * other.y)

    def __str__(self):
        return "%d + %di" % (self.x, self.y)


c1 = Complex(2, 4)
c2 = Complex(3, 1)
c3 = c1 + c2
c4 = c1 - c2
c5 = c1 * c2
c6 = c1 / c2
print(c3)
print(c4)
print(c5)
print(c6)

运行结果及报错内容
  File "C:/Users/hp/PycharmProjects/lesson/practice.py", line 139
    def __str__(self):
      ^
SyntaxError: invalid syntax


我的解答思路和尝试过的方法

之前编辑的确实是少了括号,改过后这里却还有问题

我想要达到的结果

可以解释一下吗谢谢

  • 写回答

1条回答 默认 最新

  • 请叫我问哥 Python领域新星创作者 2022-06-04 20:32
    关注

    最后一个函数的括号缺失,试试这样:

        def __truediv__(self, other):
            return Complex((self.x * other.x + self.y * other.y) / (other.x * other.x + other.y * other.y),
                           (other.x * self.y - self.x * other.y) / (other.x * other.x + other.y * other.y))
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 6月12日
  • 已采纳回答 6月4日
  • 修改了问题 6月4日
  • 创建了问题 6月4日

悬赏问题

  • ¥30 STM32 INMP441无法读取数据
  • ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
  • ¥15 用visualstudio2022创建vue项目后无法启动
  • ¥15 x趋于0时tanx-sinx极限可以拆开算吗
  • ¥500 把面具戴到人脸上,请大家贡献智慧
  • ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。
  • ¥15 各位 帮我看看如何写代码,打出来的图形要和如下图呈现的一样,急
  • ¥30 c#打开word开启修订并实时显示批注
  • ¥15 如何解决ldsc的这条报错/index error
  • ¥15 VS2022+WDK驱动开发环境