Added Donnerstag Mittag
This commit is contained in:
18
Donnerstag/taxi.py
Normal file
18
Donnerstag/taxi.py
Normal 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)
|
||||
Reference in New Issue
Block a user