例题2.11_2

DENWOSHUABAZONGSHI / 2024-11-11 / 原文

例题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)