gpt4 book ai didi

python - 如何将整数添加到字符串中?

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

所以我得到了这个

      itemIds1 = ('2394328')
itemIds2 = ('6546345')
count2 = 1
itemIdsCount = ('itemIds' + count2)
while (count2 < 2):
#Do stuff
count2 = count2 + 1

我不确定我的解释是否正确。但在第 4 行中,我想让字符串等于 itemIds1,然后一旦它看起来等于 itemsIds2。

如果你不知道我显然是Python新手,所以如果你能清楚地解释要做什么,那就太棒了。

最佳答案

以下是可能的选项:

  1. 使用%s

    itemIdsCount = 'itemIds%s' + count

  2. 首先将整数转换为字符串

    itemIdsCount = 'itemIds' + str(count)

  3. 使用.format()方法

    itemIdsCount = 'itemIds{}'.format(count)

  4. 如果您有 python 3.6,则可以使用 F-string(文字字符串插值)

    count = 1

    itemIdsCount = f'itemIds{count}'

关于python - 如何将整数添加到字符串中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43578466/

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