I am trying to make a list of terms for my chemistry class and be able to print the definition of what I ask for. I.E I ask for the definition of the imperial system and then I get the definition for the term. I have made all my variables and set them to the definitions of the terms but when I try to print a certain definition it prints all the definitions I have.
VolumeUnits = "gal, cup, table spoons, teaspoons, quart, ounces, pints"
MetricSystem = "Based on the meter, really just a stick, Based on powers of 10"
PreFixes = """kilo
hecto
deka
base
deci
centi
mili"""
Mass = "the amount of matter in an object, base unit is kilograms"
Weight = "the pull of gravity on a mass"
Volume = "lenght x width x height"
Random = "1L - dm^3. 1ml - cm^3"
Time = "base is seconds"
Temperature = "Celsius, kelvin"
SigFig = "the last number that can be measured with confidence"
Chemistry = "the study of matter and its properties and reactions"
Matter = "anything that takes up space and has mass"
input("What would you like to know?\n")
if "Imperial":
print(Imperial)
if "VolumeUnits":
print(VolumeUnits)
if "MetricSystem":
print(MetricSystem)
if "PreFixes":
print(PreFixes)
if "Mass":
print(Mass)
if "Weight":
print(Weight)
if "Volume":
print(Volume)
if "Random":
print(Random)
if "Time":
print(Time)
if "Temperature":
print(Temperature)
if "SigFig":
print(SigFig)
if "Chemistry":
print(Chemistry)
if "Matter":
print(Matter)```