gpt4 book ai didi

python - 有没有更好的方法来使用 sam var 多个字符串模格式化?

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

我的 python 代码中有一个行计数器,并且想要基于该计数器构建一个 Excel 公式。目前我使用这段代码,但我认为它并不像Python。有没有更好的表达方式?

ws["K%d" % counter] = "=F%i*25+G%i*50+H%i*75+I%i*100" % (counter, counter, counter, counter)

最佳答案

您可以使用以下版本之一:

# Still using the % operator:
ws["K%d" % counter] = "=F%(c)i*25+G%(c)i*50+H%(c)i*75+I%(c)i*100" % dict(c=counter)
# Using .format()
ws["K%d" % counter] = "=F{c}*25+G{c}*50+H{c}*75+I{c}*100".format(c=counter)

关于python - 有没有更好的方法来使用 sam var 多个字符串模格式化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37783759/

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