{}

Build your resume with HTML & CSS and win $100

Get featured on Programiz PRO and the Wall of Inspiration.

Build your resume with HTML & CSS and win $100

Join Challenge →
Join Challenge →

Build your resume with HTML & CSS and win $100

Get featured on Programiz PRO and the Wall of Inspiration.

Build your resume with HTML & CSS and win $100

Join Challenge →
Join Challenge →
run-icon
main.py
import math pi = math.pi # All code made by Joel Robinson or ThatOneDev-studio dia = float(input("What is the diameter? ")) rad = dia / 2 radtwo = rad * rad area = pi * radtwo print(f"The area of the circle is {area}, this is an exact number for all digits of pi, how we solved it is we halved {dia} to be {rad} and squared that to be {radtwo} and multiplied it by π to get {area}")
Output