Python Program to print circumference of circle


r=int(input('enter radius of circle'))

pie=22/7

circum=pie*r*2

print('circumference of circle=',circum)

Comments

Some popular posts

Python Program that computes the net amount of a bank account based a transaction log from console input.