Codecademy export
# Add your code here | |
medical_costs = {} | |
medical_costs["Marina"] = 6607.0 | |
medical_costs["Vinay"] = 3225.0 | |
medical_costs.update({"Connie": 8886.0, "Isaac": 16444.0, "Valentina": 6420}) | |
medical_costs["Vinay"] = 3325.0 | |
total_cost = 0 | |
for cost in medical_costs.values(): | |
total_cost += cost | |
average_cost = total_cost/len(medical_costs) | |
print("Average Insurance Cost: " + str(average_cost)) | |
names = ["Marina", "Vinay", "Connie", "Isaac", "Valentina"] | |
ages = [27, 24, 43, 35, 52] | |
zipped_ages = zip(names,ages) | |
names_to_ages = {key:value for key, value in zipped_ages} | |
marina_age = names_to_ages.get("Marina", None) | |
print("Marina's age is " + str(marina_age)) | |
medical_records = {} | |
medical_records["Marina"] = {"Age": 27, "Sex": "Female", "BMI": 31.1, "Children": 2, "Smoker": "Non-smoker", "Insurance_cost": 6607.0} | |
medical_records["Vinay"] = {"Age": 24, "Sex": "Male", "BMI": 26.9, "Children": 0, "Smoker": "Non-smoker", "Insurance_cost": 3225.0} | |
medical_records["Connie"] = {"Age": 43, "Sex": "Female", "BMI": 25.3, "Children": 3, "Smoker": "Non-smoker", "Insurance_cost": 8886.0} | |
medical_records["Isaac"] = {"Age": 35, "Sex": "Male", "BMI": 20.6, "Children": 4, "Smoker": "Smoker", "Insurance_cost": 16444.0} | |
medical_records["Valentina"] = {"Age": 52, "Sex": "Female", "BMI": 18.7, "Children": 1, "Smoker": "Non-smoker", "Insurance_cost": 6420.0} | |
print(medical_records) | |
Connie_insurance = medical_records["Connie"]["Insurance_cost"] | |
print(Connie_insurance) | |
print("Connie's insurance cost is " + str(Connie_insurance) + " dollars") | |
medical_records.pop("Vinay") | |
for name,record in medical_records.items(): | |
print(name + " is a " + str(record["Age"]) + " year old " + record["Sex"] + " " + record["Smoker"] + " with a BMI of " + str(record["BMI"] + " and insurance cost of " + str(record["Insurance_cost"])) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment