我需要解析一个文件,它具有以下内容:
result(x1 y1 x2 y2... xn yn)
这是我用 python 编写的一段代码。我是 python 新手。
xs =[] ys=[]
def __init__(self,xs,ys):
self.xs = xs
self.ys = ys
def toString(self):
return "result " + " (" + " ".join([x.toString()+ " " + y.toString() for x,y in zip(self.xs, self.ys)]) + ") "
我AttributeError: 'str' object has no attribute 'toString'
在运行时遇到错误。请建议如何解决这个问题。