我正在解析患者就诊列表(csv文件)。为了解决这个问题,我有一组自定义的类:
class Patient:
def __init__(self,Rx,ID):
....
class PtController:
def __init__(self,openCSVFile):
self.dict=DictReader(openCSVFile)
self.currentPt = ''
....
def initNewPt(self,row):
Rx = row['Prescription']
PatientID = row['PatientID']
self.currentPt = Patient(Rx,PatientID)
...
所以,我正在使用csv.DictReader来处理文件;内置于PtController类中。它会迭代,但要为第一位患者设置值,请执行以下操作:
firstRow = self.dict.next()
self.initNewPt(self,firstRow)
...
错误:
TypeError: initNewPt() takes exactly 2 arguments (3 given)
如果我在调用initNewPt之前打印(firstRow),它会按照预期以字典形式打印行。
使用python2.7,这是我第一次使用对象。思考?
答案 0 :(得分:11)
您不需要像self
那样直接传递self.initNewPt(self,firstRow)
,因为它会自动由Python隐式传递。
答案 1 :(得分:5)
当您致电self.initNewPt()
时,不应将self
作为参数传递。这是一个自动出现的隐含参数。
答案 2 :(得分:4)
您需要在类方法中调用initNewPt
而不使用self
参数:
self.initNewPt(firstRow)