Compare commits

..

2 commits

Author SHA1 Message Date
zyqunix
c6ad964780
Merge branch 'main' of https://git.creations.works/zyqunix/school
add idk
2025-04-03 14:54:30 +02:00
zyqunix
1456b1160c
zeichenzaehlen.py blah blah 2025-03-31 23:16:57 +02:00
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,3 @@
for i in range(10):
i += 1;
print(i ** 2);

View file

@ -0,0 +1,9 @@
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}")