Tabelle mit Eingaben zum Kopieren:
Name | max. Tankinhalt | Verbrauch | Farbe |
---|---|---|---|
{{Autos[0].Name}} | {{Autos[0].Tank}} | {{Autos[0].Verbrauch}} | {{Autos[0].Farbe}} |
{{Autos[1].Name}} | {{Autos[1].Tank}} | {{Autos[1].Verbrauch}} | {{Autos[1].Farbe}} |
Pyhton-Code zum Kopieren:
PKW_1 = {
"Name":'PKW 1',
"Farbe": 'blau',
"Verbrauch": 6.2,
"Tank": 37,
"Reichweite": 0
}
PKW_2 = {
"Name":'PKW 2',
"Farbe": 'silber',
"Verbrauch":8.3,
"Tank": 65,
"Reichweite": 0
}
PKW_3 = {
"Name":'PKW 3',
"Farbe": 'schwarz',
"Verbrauch": 4.4,
"Tank": 35,
"Reichweite": 0
}
Autos_Liste = (PKW_1, PKW_2, PKW_3)
Autos = dynexite.sample(Autos_Liste, 2)
Reichweite_Liste = []
for a in Autos:
a["Reichweite"] = (a["Tank"]/a["Verbrauch"])*100
Reichweite_Liste.append(a["Name"])
Zufall = dynexite.choice(Autos)
Auto_Max = max(Autos, key=lambda x:x["Reichweite"])
Falsch = (Reichweite_Liste.copy())
Falsch.remove(Auto_Max["Name"])