HTMLify
Home
Log in
Register
Dashboard
Frames
API
char_frequency.py
Views: 124 | Author:
abh
def
char_frequency
(
string
):
freq
=
{}
for
c
in
string
:
freq
[
c
]
=
freq
.
get
(
c
,
0
)
+
1
return
freq
Share this file:
Copy
Short Link
View Raw
Download File
(113 B)
Embed Code
Clone
Comments
Comment