Answered step by step
Verified Expert Solution
Question
1 Approved Answer
.Write a Python program to input radius of circle from user and find diameter, circumference and area of the given circle using function. Circle area:
.Write a Python program to input radius of circle from user and find diameter, circumference and area of the given circle using function. Circle area: rtr1 Circle Circumference: 2Ttr Circle Diameter: 2r Sample Input: Input radius: 10 Sample Output: Diameter 20 Circumference-62.83 Area = 314.16 you can't use any built-in python function or module. Import math can't be used. Using these pre-defined math functions from the python library will result in zero marks in the answer. You have to do proper mathematical calculations in the coding. Each output should be converted into two decimal points
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started