gpt4 book ai didi

python - 如何在 Python 3 .6 中使用 f-string 制作字典格式?

转载 作者:太空狗 更新时间:2023-10-29 17:01:26 24 4
gpt4 key购买 nike

如何使用 Python 3.6 F-String 实现这种格式?

person = {'name': 'Jenne', 'age': 23}

print('My name {0[name]} and my age {1[age]}'.format(person, person))
print('My name {0} and my age {1}'.format(person['name'], person['age']))

最佳答案

好吧,需要引用字典键。

f'我的名字 {person["name"]} 和我的年龄 {person["age"]}'

关于python - 如何在 Python 3 .6 中使用 f-string 制作字典格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43488137/

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