gpt4 book ai didi

python - 将由 float 和文本组成的元组转换为一个字符串

转载 作者:太空宇宙 更新时间:2023-11-03 15:53:38 25 4
gpt4 key购买 nike

我正在尝试将一个由 2 个 float 和 3 个文本部分组成的元组转换为一个字符串,以便我可以在 file.write() 中使用它,因为它不接受元组。

testr = 'you went' ,speed ,'mph and stopped in' ,stop ,'meters'
test = open('testresults.txt' ,'w')
test.write(testr)
test.close()

每当我尝试运行程序时,它都会给我这个

    test.write(testr)
TypeError: must be str, not tuple

最佳答案

使用格式:

testr = 'you went {} mph and stopped in {} meters'.format(speed, stop)

关于python - 将由 float 和文本组成的元组转换为一个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44947143/

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