Find the area & perimeter of circle with user-interface in Python Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code r=float(input(“Enter radius : “))pi=3.14area=pi*r*rperi=2*pi*rprint(“Area of circle : “, area)print(“Perimeter of circle : “, peri) Output Enter radius : 8.7Area of circle : 237.66659999999996Perimeter of circle : 54.635999999999996 View All Python Programs