gpt4 book ai didi

python - Python 格式语法

转载 作者:太空宇宙 更新时间:2023-11-03 12:19:17 26 4
gpt4 key购买 nike

有没有办法以更好的方式编写这行代码:

"""{a};{b};{c};{d}""".format(a = myDictionary[a], b = myDictionary[b], c = myDictionary[c], d = myDictionary[d])

是这样的吗?

"""{a};{b};{c};{d}""".format(myDictionary)

最佳答案

使用keyword expansion在词典上:

"{a};{b};{c};{d}".format(**myDictionary)

关于python - Python 格式语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12301043/

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