-1

我有一个产品清单

products = ["meat","salad","tomatoes"]

我想将它们显示在 tkinter 消息框对象中,作为消息。所以想要这样的东西:

This products are already in the list:
-meat
-salad
-tomatoes

但是我怎样才能将字符串作为消息输出产品列表中的所有元素呢?这甚至可能吗?

如果你可以在这个中使用循环,我会很伤心......

4

1 回答 1

0

如果构造字符串是您的问题,是的,这是可能的,并且可以通过循环来完成。

st = "This products are already in the list:"
for i in products:
    st += "\n-" + i

然后,该变量st将具有您需要放入的输出MessageBox
(“\n”是换行符,我们使用字符串连接形成正确的输出字符串)

于 2016-04-11T14:12:45.627 回答