所以我正在学习如何使用类和python,我正在创建一个简单的程序来执行有理数的算术运算。我正在创建一个名为ArithmeticOperations的类。在这个类中,我有一个主函数定义,它提示用户输入2个有理数的分子和分母,然后根据用户的选择执行和,差,乘积或商。操作在单独的功能中执行。现在我已经创建了main函数和product函数,但是当我运行它时,我得到一个错误,上面写着
TypeError:product()只需要5个参数(给定6个)
我确信这很简单,但我是新手,所以我在调试方面遇到了一些麻烦。这是我目前的计划:
class ArithmeticOperations:
# Given numbers u0, v0, and side, design a pattern:
def product(self,n1, d1, n2,d2):
self.numerator = n1*n2;
self.denominator = d1*d2;
print n1,'/',d1,'*',n2,'/',d2,'=',self.numerator,'/',self.denominator;
def main(self):
n1 = input('Enter the numerator of Fraction 1: ');
d1 = input('Enter the denominator of Fraction 1: ');
n2 = input('Enter the numerator of Fraction 2: ');
d2 = input('Enter the denominator of Fraction 2: ');
print '1: Add \n 2: Subtract\n 3: Multiply\n 4: Divide' ;
question = input('Choose an operation: ');
if question == 1:
operation = self.sum(self,n1,d1,n2,d2);
elif question == 2:
operation = self.difference(self,n1,d1,n2,d2);
elif question == 3:
operation = self.product(self,n1,d1,n2,d2);
elif question == 4:
operation = self.quotient(self,n1,d1,n2,d2);
else:
print 'Invalid choice'
ao = ArithmeticOperations();
ao.main();
答案 0 :(得分:9)
在方法调用中,无需显式指定self
。只需致电:self.product(n1,d1,n2,d2);
,即可获得所需的行为。
类方法总是会有这个额外的self
第一个参数,这样你就可以引用方法体内的self。另请注意,与java(以及更多)等语言中的this
不同,self
只是第一个参数名称的常见做法,但您可以调用它,但是您喜欢并使用它一切都一样。