例題2.11_2

等我刷把宗师發表於2024-10-22

例題2.11_2程式碼

import string, random, collections
x = string.ascii_letters + string.digits
y = ' '.join([random.choice(x) for i in range(1000)])
count = collections.Counter(y)
for k, v in sorted(count.items()):
print(k, ':', v)





相關文章