我有一个产品清单
products = ["meat","salad","tomatoes"]
我想将它们显示在 tkinter 消息框对象中,作为消息。所以想要这样的东西:
This products are already in the list:
-meat
-salad
-tomatoes
但是我怎样才能将字符串作为消息输出产品列表中的所有元素呢?这甚至可能吗?
如果你可以在这个中使用循环,我会很伤心......
我有一个产品清单
products = ["meat","salad","tomatoes"]
我想将它们显示在 tkinter 消息框对象中,作为消息。所以想要这样的东西:
This products are already in the list:
-meat
-salad
-tomatoes
但是我怎样才能将字符串作为消息输出产品列表中的所有元素呢?这甚至可能吗?
如果你可以在这个中使用循环,我会很伤心......