Onyx Onyx 03-09-2023 Computers and Technology High School What is the output for the following portion of a program? Assume the user enters 162.5.```pythonstrWeight = input("Enter your weight in pounds: ")weight = float(strWeight)print(weight)```A. 162.5B. 162C. 163D. An error occurs