What would be the wavelength, in nm, of a photon that has [a…
What would be the wavelength, in nm, of a photon that has [a] x 10–19 J of energy? Note 1: Do NOT include any unit symbols in your answer. Note 2: If you choose to enter your answer in scientific notation, use the “E” notation, for example 7.2 × 104 would be entered as 7.2E4.
Read DetailsWhat mass, in grams, of zinc chloride would completely react…
What mass, in grams, of zinc chloride would completely react with [v] mL of a [m] M solution of sodium hydroxide, according to the reaction below? You can use the molar masses: ZnCl2 = 136.315 g/mol NaOH = 39.9971 g/mol Note: Do NOT include any unit symbols in your answer.
Read DetailsWrite a Python program that acts as a very basic calculator….
Write a Python program that acts as a very basic calculator. Your program should: Ask the user for two numbers. Ask the user for an operation. (addion + or subtraction -). Perform the chosen operation on the two numbers and print the result. Include a simple check to make sure only numbers are input. Your program should loop until both numbers entered are zero. Hint: You will need a loop and a try/except! Sample run: Enter first number (0 to exit): 10Enter second number (0 to exit): 5Enter operation (+, -,): +Result: 15.0——————————Enter first number (0 to exit): abcInvalid input. Please enter numbers.——————————Enter first number (0 to exit): 0Enter second number (0 to exit): 0Exiting calculator. Goodbye! You should be able to complete this in 17 lines of code or fewer. However, if you go over, no points will be deducted. You do not need to use functions unless you want to.
Read Details