使用 str.format() 和字典

为什么会这样:


data = {'first': 'Hodor', 'last': 'Hodor!'}

print('{first} {last}'.format(**data))

这有效:


bdays = {

    'Wesley Neill': 'January 6, 1985',

    'Victoria Neill': 'August 25, 1992',

    'Heather Neill': 'June 25, 1964'

}


print('\n {} \n {} \n {}'.format(*bdays))

但这不起作用:


 print('\n {} \n {} \n {}'.format(**bdays))


Traceback (most recent call last):

  File "C:/Users/wesle/PycharmProjects/practicepython/birthdays.py", line 9, in <module>

    print('We have the following names in our dictionary: \n {} \n {} \n {} \n'.format(**bdays))

IndexError: tuple index out of range

第一个示例在占位符大括号中包含字典键,并在参数中使用 **kwargs。


第二个没有键,在 .format() 参数中只有一个星号。


第三个在占位符中没有键,如示例 1 所示,但它确实在参数中使用了 **kwargs。


我知道我需要做些什么才能使事情正常进行,但我对这里的微妙之处感到好奇。


30秒到达战场
浏览 122回答 2
2回答

肥皂起泡泡

.format(**bdays)相当于.format(key1=value, key2=value2,...)键是名称,值是生日。因此,要使其发挥作用,您的打印声明需要成为 -print('\n {Wesley Neill} \n {Victoria Neill} \n {Heather Neill}'.format(**bdays))这将打印这 3 个人的生日。在您的 python 控制台中尝试以下操作 ->>> [*bdays]['Wesley Neill', 'Victoria Neill', 'Heather Neill']

精慕HU

首先星号符号的作用:**dict is equivalent to k1=v1, k2=v, ...*dict is equivalent to [k1, k2, ...]所以你在做:# This print('{first} {last}'.format(**data)) is:print('{first} {last}'.format(first='Hodor', last='Hodor!'))# This print('\n {} \n {} \n {}'.format(*bdays)) is:print('\n {} \n {} \n {}'.format(['Wesley Neill', 'Victoria Neill', 'Heather Neill']))# This print('\n {} \n {} \n {}'.format(**bdays)) is:print('\n {} \n {} \n {}'.format('Wesley Neill'='January 6, 1985', 'Victoria Neill'='August 25, 1992', 'Heather Neill'='June 25, 1964'))最终格式字符串中没有说明任何键,因此您会收到错误消息。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python