write a program in python to print circumference of circle
Answers
Answered by
7
Answer:
Python Programming Code to Calculate Circumference of Circle
# Python Program - Calculate Circumference of Circle print("Enter 'x' for exit."); rad = input("Enter radius of circle: "); if rad == 'x': exit(); else: radius = float(rad); circumference = 2*3.14*radius; print("\nCircumference of Circle =",circumference);
Explanation:
.
.
.
.
hope its help u......(◔‿◔)
Similar questions
Computer Science,
2 months ago
Science,
2 months ago
Science,
5 months ago
Hindi,
5 months ago
Economy,
10 months ago
Computer Science,
10 months ago