Compare commits
2 commits
674871cf8a
...
c6ad964780
Author | SHA1 | Date | |
---|---|---|---|
![]() |
c6ad964780 | ||
![]() |
1456b1160c |
2 changed files with 12 additions and 0 deletions
3
bedingungen_und_schleifen/quadtratzahlen_berechnen.py
Normal file
3
bedingungen_und_schleifen/quadtratzahlen_berechnen.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
for i in range(10):
|
||||
i += 1;
|
||||
print(i ** 2);
|
9
bedingungen_und_schleifen/zeichen_zaehlen.py
Normal file
9
bedingungen_und_schleifen/zeichen_zaehlen.py
Normal 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}")
|
Loading…
Add table
Reference in a new issue