Added Donnerstag Mittag

This commit is contained in:
2022-11-24 12:57:50 +01:00
parent 1a21942de5
commit 20066fe48d
9 changed files with 130 additions and 1 deletions

18
Donnerstag/taxi.py Normal file
View File

@@ -0,0 +1,18 @@
def output_taxi(menge: int):
for taxi in range(6):
if taxi == 1:
print(taxi, "Taxi", sep=" ")
else:
print(taxi, "Taxen", sep=" ")
#oder
#print(taxi, "Taxi" if taxi == 1 else "Taxen")
output_taxi(6)
output2 = [i for i in range(6)]
print(output2)