如何在python3中从列表中删除新行[已关闭]

11dmarpk  于 2022-12-17  发布在  Python
关注(0)|答案(1)|浏览(93)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
昨天关门了。
Improve this question
我有一个列表,打印如下:
[“购买”]
[“出售”]
[“购买”]
[“购买”]
[“出售”]
[“购买”]
[“购买”]
如何使其打印在1行中(例如:[“买”、“卖”、“买”、“买”、“卖”])
我试过使用rstrip和strip,但它似乎不起作用,甚至尝试使用for循环将其添加到新列表,但它只是显示相同

zbwhf8kr

zbwhf8kr1#

要打印列表,您可以执行以下操作:

my_list = ["buy", "sell", "buy", "buy", "sell"]
print(my_list)

相关问题