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

27
umsatzsteuer/main.py Normal file
View File

@@ -0,0 +1,27 @@
print("Bitte das Bundesland klein schreiben!")
umsatz_2025 = int(input("Geben Sie den Umsatz von 2025 ein: "))
umsatz_2024 = int(input("Geben Sie den Umsatz von 2024 ein: "))
bundesland = input("Geben Sie das Bundesland ein: ").lower()
percent = {
"wien": 0.6,
"burgenland": 0.6,
"steiermark": 0.5,
"kärnten": 0.5,
"niederösterreich": 0.55,
"oberösterreich": 0.55,
"salzburg": 0.55,
"tirol": 0.45,
"vorarlberg": 0.45,
}
if umsatz_2024 <= umsatz_2025 * 0.6:
if bundesland in percent:
difference = umsatz_2025 - umsatz_2024
betrag = difference * percent[bundesland]
print("Sie sind berechtigt!")
print(f"Sie bekommen: {betrag:.2f} Euro")
else:
print("Ungültiges Bundesland!")
else:
print("Sie sind NICHT berechtigt!")