gpt4 book ai didi

python - 在字典中查找最长的(字符串)键

转载 作者:太空狗 更新时间:2023-10-30 01:39:30 25 4
gpt4 key购买 nike

这个问题类似于Python - Find longest (most words) key in dictionary - 但我需要纯字符数。

示例输入:

d = {'group 1': 1, 'group 1000': 0}

输出:

10

最佳答案

>>> max(len(x) for x in d)

>>> max(map(len, d))

关于python - 在字典中查找最长的(字符串)键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10895567/

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