Python Program to input radius of circle and print area of circle


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

pie=22/7

area=pie*r**2

print('area of circle=',area)

Comments

Some popular posts

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