打印字符串里每个字符的个数

a = 'hello world'
b = []
for i in a:
    if '%s:%s' % (i, a.count(i)) not in b:
        b.append('%s:%s' % (i, a.count(i)))
print(b)

  

                                                                   -------  知识无价,汗水有情,如需搬运请注明出处,谢谢!

上一篇:从壹开始前后端分离 [ Vue2.0+.NET Core2.1] 十六 ║Vue基础:ES6初体验 & 模块化编程


下一篇:jquery.Deferred promise解决异步回调