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日

悬赏问题

  • ¥15 Simulink仿真报错,请问如何解决
  • ¥20 宝塔面板无法添加Node项目,一直处于正在添加脚本页面
  • ¥50 Dkeil5 CT107D单片机的程序编写
  • ¥30 Ubuntu20.04中PVN3D复现过程交叉编译问题
  • ¥15 模拟电路求复阻抗和传递函数,请各位拍照写一下解答过程
  • ¥60 不懂得怎么运行下载来的代码
  • ¥15 CST导出3D模型图为什么和软件显示不一样?
  • ¥15 加热反应炉PLC控制系统设计(相关搜索:梯形图)
  • ¥15 python 用Dorc包报错,我的写法和网上教的是一样的但是它显示无效参数,是什么问题
  • ¥15 经过滑动平均后的一维信号还原用什么结构好呢?