我已经在该for循环中的该屏幕上显示了所有需要显示的数据,但是它一直循环到最后,我正在研究如何在此for循环的末尾添加用户输入,但是我似乎找不到任何内容使用kivy时,我需要的是最后一个弹出窗口,因此用户可以基本确认所有值,然后按按钮以继续循环,如果这是一个荒谬的问题,对不起,python还是有点陌生,谢谢!
TT是一个分组的熊猫数据框,如果它可以帮助人们理解
for num in range(0, amount_of_rows)
yp = TT.iloc[[num]]
print(yp)
code = yp['code'].values
description = yp['description'].values
quantity = yp['quantity'].values
location = yp['name2'].values
print(code)
print(description)
print(quantity)
print(location)
self.ids.Description_one.text = str(description)
self.ids.Product_code_one.text = str(code)
self.ids.Quantity_one.text = str(quantity)
self.ids.location_one.text = str(location)