# A bаsebаll scоut recоrds а pitcher's speed in miles per hоur, but# the team's international report needs the speed in kilometers per hour.# Write a Python program that:# Prompts the user to enter a pitch speed in miles per hour (as a float).# Converts the speed to kilometers per hour (1 mile = 1.60934 kilometers).# Stores the conversion value in a variable with an ALL_UPPERCASE name# to indicate that it is a constant# Displays the converted speed, with two decimal places of precision. Sample Run Enter the pitch speed in miles per hour: 95.4Pitch speed in kilometers per hour: 153.53. Rubric Code runs successfully (1 point) Prompts the user for a pitch speed and stores it in a variable (1 point) Stores the conversion amount as a constant (1 point) Completes the conversion (1 point) Prints the kph to 2 decimal places of precision (1 point)