gpt4 book ai didi

python - 在 python 中使用带有 .format 的元组

转载 作者:行者123 更新时间:2023-12-01 22:57:53 25 4
gpt4 key购买 nike

使用 .format() 时使用文本填充时,我遇到了这个错误。

我拥有的:

tuple = ('a', 'b', 'c')
text = "Hi {} hello {} ola {}"
#command I tried to run
text.format(tuple)

我的目标输出:
 Hi a hello b ola c

我得到的错误:

IndexError: tuple index out of range



不知道如何解决这个问题!

最佳答案

您想使用 iterable unpacking :

>>> t = (1, 2, 3)
>>> "{}, {}, {}".format(*t)
'1, 2, 3'

旁注:请勿使用 tuple作为变量名,因为这是保留的 Python built-in函数(即 tuple([1, 2, 3]) )。

关于python - 在 python 中使用带有 .format 的元组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59926138/

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