Write a script to perform various basic math operations. Use some functions imported from Python's math module. Generate formatted output.
At the top of your script, put the following multi-line comment with your information:
'''
Your name as registered, with optional nickname in parentheses
CIS 41A Fall 2021
Unit A, Problem A
'''
1) Calculate and print the final value of each variable.
2) Use abs, round, and min to calculate some values. These are all Python built in functions (see: BIF).
3) Use some functions from Pythons math module to perform some calculations. (see: Mathematical functions).
Add the following at the end of the script to show your results:
'''
Execution results:
paste execution results here
'''
Submit your finished py script in Canvas, Problem A.