# # A program that converts from kPa to other units of pressure # # Name # ID Number # ATM_TO_KPA = 101.325 ATM_TO_MMHG = 760 ATM_TO_PSI = 14.696 # Read input from the user in kPa kPa = input("Enter a value in kPa: ") # Perform the conversion from kPa to other units atm = kPa / ATM_TO_KPA mmHg = atm * ATM_TO_MMHG psi = atm * ATM_TO_PSI # Display the results in 3 different units print kPa,"kPa is equal to", atm, "atmospheres" print kPa,"kPa is equal to", mmHg, "millimetres of mercury" print kPa,"kPa is equal to", psi, "pounds per square inch"