我正在學習Python,但我找不到這樣的答案:如何在這種情況下實現add方法? (Python)
「實現add方法,它應該爲當前字段添加數量」。
class Complex:
def create(self, real_part, imag_part):
self.r = real_part
self.i = imag_part
class Calculator:
current = 0
def add(self, amount):
*i need to edit only this line*
def get_current(self):
return self.current
這是Pycharm埃杜教程(Python簡介任務43 50) 感謝分享我們的一個問題。 –