gpt4 book ai didi

python - % 数组中的元组? python(不将元组追加到数组中)

转载 作者:行者123 更新时间:2023-11-30 22:10:12 25 4
gpt4 key购买 nike

假设您有如下所示的内容:

x=10
l=11
list = ["%s bla","%s bla"%(x,l)]
print(list)

在这种情况下,您会收到以下错误:

TypeError: not all arguments converted during string formatting

我假设这是由于元组位于数组中造成的。使用 .format,您将得到:

['{} bla', '11 bla']

有什么办法可以解决我的问题吗?

最佳答案

您需要为每个字符串提供自己的变量:

x=10
l=11
list = ["%s bla" % x,"%s bla" % l]
print(list)

关于python - % 数组中的元组? python(不将元组追加到数组中),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51718381/

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