作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我得到了这个
itemIds1 = ('2394328')
itemIds2 = ('6546345')
count2 = 1
itemIdsCount = ('itemIds' + count2)
while (count2 < 2):
#Do stuff
count2 = count2 + 1
我不确定我的解释是否正确。但在第 4 行中,我想让字符串等于 itemIds1,然后一旦它看起来等于 itemsIds2。
如果你不知道我显然是Python新手,所以如果你能清楚地解释要做什么,那就太棒了。
最佳答案
以下是可能的选项:
使用%s
itemIdsCount = 'itemIds%s' + count
首先将整数转换为字符串
itemIdsCount = 'itemIds' + str(count)
使用.format()
方法
itemIdsCount = 'itemIds{}'.format(count)
如果您有 python 3.6,则可以使用 F-string(文字字符串插值)
count = 1
itemIdsCount = f'itemIds{count}'
关于python - 如何将整数添加到字符串中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43578466/
我是一名优秀的程序员,十分优秀!