'F' → Fullscreen
Create a new Python program named 1-9-math-functions.
math module.math.pi.round().import math
radius = float(input("Enter radius: "))circumference = 2 * math.pi * radius
print(f"Circumference: {circumference}")print(f"Rounded: {round(circumference, 2)}")**, then print the result using math.pow(), each labeled.import math
radius = float(input("Enter radius: "))circumference = 2 * math.pi * radius
print(f"Circumference: {circumference}")print(f"Rounded: {round(circumference, 2)}")
side = float(input("Enter a side length: "))exponent = int(input("Enter an exponent: "))
print(f"{side} ** {exponent} is {side ** exponent}")print(f"math.pow({side}, {exponent}) is {math.pow(side, exponent)}")math.sqrt().import math
radius = float(input("Enter radius: "))circumference = 2 * math.pi * radius
print(f"Circumference: {circumference}")print(f"Rounded: {round(circumference, 2)}")
side = float(input("Enter a side length: "))exponent = int(input("Enter an exponent: "))
print(f"{side} ** {exponent} is {side ** exponent}")print(f"math.pow({side}, {exponent}) is {math.pow(side, exponent)}")
number = float(input("Enter a positive number: "))print(f"Square root of {number} is {math.sqrt(number)}")math.ceil() and math.floor() in the Python docs.Verify your program works correctly.
Enter radius: 42 [Enter]Circumference: 263.89378290154264Rounded: 263.89Enter a side length: 2 [Enter]Enter an exponent: 3 [Enter]2.0 ** 3 is 8.0math.pow(2.0, 3) is 8.0Enter a positive number: 45 [Enter]Square root of 45.0 is 6.708203932499369Answer the following questions before submitting your work.
math need to be imported when round() doesn't?** and math.pow(), since they do the same job?math.pi get used without parentheses, while math.sqrt() needs them?Submit the required files to the appropriate dropbox.