initial commit

This commit is contained in:
2025-10-01 10:46:21 +02:00
commit 50a55e19d6
138 changed files with 2037 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
# -*- coding: ansi -*-
satz = input("Bitte gib einen Satz ein: ")
buchstabe = input("Welchen Buchstaben m<>chtest du z<>hlen? ")
anzahl = satz.count(buchstabe)
print(f"Der Buchstabe '{buchstabe}' kommt {anzahl} mal im Satz vor.")