gpt4 book ai didi

python - 用破折号将 python 中的元组字符串化

转载 作者:太空宇宙 更新时间:2023-11-04 06:56:18 27 4
gpt4 key购买 nike

我有一个元组,我想对其进行字符串化以使其成为 Redis 键。

我试过 '-'.join 但输出效果不佳 --> 字符串中每个字母之间的破折号。谁能提出比我的 string + '-' + string2... 下面构造更好的函数?

谢谢!

matchkey = (mdate, season, aseries, homeclub, awayclub, court)
mk = mdate + '-' + season + '-' aseries + '-' homeclub + '-' awayclub + '-' court

最佳答案

'-'.join(str(x) for x in matchkey)

关于python - 用破折号将 python 中的元组字符串化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16691251/

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