All Vehicle Company Names
All Vehicle Company Names
if not model_found:
print("Model not found.")
By using this above template code apply them into given code
def special_purpose_vehicles_data():
vehicles_data_7 = {
"Special Purpose Vehicles": {
"Fire Trucks": {
"Pierce Arrow XT": {
"Make": "Pierce",
"Model": "Arrow XT",
"Year Range": "2015 To 2023",
"Price Range (INR)": "2,50,00,000 - 3,50,00,000",
"Mileage Range (km/l)": "3 - 5",
"Color": ["Red", "Yellow"],
"Location": "New York",
"Status": "Available",
"Country": "USA",
"Continent": "North America"
},
"Rosenbauer Panther": {
"Make": "Rosenbauer",
"Model": "Panther",
"Year Range": "2017 To 2023",
"Price Range (INR)": "3,00,00,000 - 4,00,00,000",
"Mileage Range (km/l)": "2 - 4",
"Color": ["Red", "Black"],
"Location": "Berlin",
"Status": "Available",
"Country": "Germany",
"Continent": "Europe"
}
},
"Ambulances": {
"Ford Transit Ambulance": {
"Make": "Ford",
"Model": "Transit Ambulance",
"Year Range": "2018 To 2023",
"Price Range (INR)": "60,00,000 - 1,00,00,000",
"Mileage Range (km/l)": "10 - 12",
"Color": ["White", "Red"],
"Location": "London",
"Status": "Available",
"Country": "UK",
"Continent": "Europe"
},
"Mercedes-Benz Sprinter Ambulance": {
"Make": "Mercedes-Benz",
"Model": "Sprinter Ambulance",
"Year Range": "2016 To 2023",
"Price Range (INR)": "80,00,000 - 1,20,00,000",
"Mileage Range (km/l)": "10 - 14",
"Color": ["White", "Yellow"],
"Location": "Munich",
"Status": "Available",
"Country": "Germany",
"Continent": "Europe"
}
},
"Construction Vehicles": {
"Caterpillar 745": {
"Make": "Caterpillar",
"Model": "745",
"Year Range": "2015 To 2023",
"Price Range (INR)": "1,80,00,000 - 2,50,00,000",
"Mileage Range (km/l)": "3 - 6",
"Color": ["Yellow"],
"Location": "Texas",
"Status": "Available",
"Country": "USA",
"Continent": "North America"
},
"Volvo A45G": {
"Make": "Volvo",
"Model": "A45G",
"Year Range": "2018 To 2023",
"Price Range (INR)": "2,00,00,000 - 2,80,00,000",
"Mileage Range (km/l)": "3 - 6",
"Color": ["Yellow", "Green"],
"Location": "Stockholm",
"Status": "Available",
"Country": "Sweden",
"Continent": "Europe"
}
}
}
}
return vehicles_data_7