0% found this document useful (0 votes)
14 views2 pages

All Vehicle Company Names

Uploaded by

Jayesh Kalkate
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views2 pages

All Vehicle Company Names

Uploaded by

Jayesh Kalkate
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

Using this template code

# Get electric vehicles data


vehicles_data_3 = electric_vehicles_data()
print("Available Electric Vehicles:")
for category, models in vehicles_data_3["Electric Vehicles"].items():
print(f"{category}:")
for model_name in models.keys():
print(f"- {model_name}")

# Allow user to select a model and show details


selected_model = input("Enter the model name you want to know more about: ")
model_found = False

for category, models in vehicles_data_3["Electric Vehicles"].items():


if selected_model in models:
model_found = True
print(f"\nDetails of {selected_model}:")
for detail_key, detail_value in models[selected_model].items():
print(f"{detail_key}: {detail_value}")
break

if not model_found:
print("Model not found.")

By using this above template code apply them into given code

# Special Purpose Vehicles .

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

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy