9 lines
263 B
Python
9 lines
263 B
Python
text = input("Gib eine Zeichenkette ein: ")
|
|
haeufigkeit = {}
|
|
|
|
for buchstabe in text:
|
|
if buchstabe.isalpha():
|
|
haeufigkeit[buchstabe] = haeufigkeit.get(buchstabe, 0) + 1
|
|
|
|
for buchstabe, anzahl in haeufigkeit.items():
|
|
print(f"{buchstabe}: {anzahl}")
|