gpt4 book ai didi

python - 在 Python 中将数组格式化为字符串

转载 作者:太空宇宙 更新时间:2023-11-04 09:14:59 29 4
gpt4 key购买 nike

我正在制作一个 python irc 审核机器人。它的功能之一是报告。

由于是多词的原因,所以bot输出报告时,显示为

Report from aletheia Offender: codefreak Channel: #admin Reason: ['test', 'report']

我如何格式化原因(在代码中写为行 [6:]。(行中的第 6 个参数))所以它显示为一个字符串而不是一个数组?

最佳答案

这给了你你想要的:

' '.join(['test', 'report'])

或者在你的情况下可能:

' '.join(line[6:])

关于python - 在 Python 中将数组格式化为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10746111/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com