我是python的初学者。我试图将函数返回的值保存在一个对象上,并希望打印该对象以查看该对象中存储的值。我已经为我项目的一部分编写了一个示例代码 代码附后。我需要做的是将“标签”(在代码中)返回的值保存到对象并在标签中打印值。
def carlabels(carinfo):
car_labels=[]
num=60
for (car,xy,orient,err,wl,sq) in carinfo:
xy2= (int(xy[0]+r*math.sin(math.radians(orient))),int(xy[1]-r*math.cos(math.radians(orient))))
car_labels.append((xy,xy2,str(tag)))
return car_labels