美文网首页
字典只添加值,键从哪里来的?

字典只添加值,键从哪里来的?

作者: 扬帆起航_f891 | 来源:发表于2019-07-27 22:36 被阅读0次

    str_one ='hello world'

    dict_one = {}

    for i  in str_one:

        dict_one[i] = str_one.count(i)

    print(dict_one)

    结果: {'h': 1, 'e': 1, 'l': 3, 'o': 2, ' ': 1, 'w': 1, 'r': 1, 'd': 1}

    相关文章

      网友评论

          本文标题:字典只添加值,键从哪里来的?

          本文链接:https://www.haomeiwen.com/subject/eghwixtx.html