Python Programming - Circumference of a Circle
by matt392 in Circuits > Software
4520 Views, 3 Favorites, 0 Comments
Python Programming - Circumference of a Circle
Short Python program that calculates the circumference of a circle.
Code is below and attached.
==================================================
print ("This will calculate the circumference of a circle.")
pi = 3.141592
print ("Pi is:", pi)
DiameterEntered = input("Please enter the diameter: ")
# Converting diameter to a floating number
DiameterFloat = float(DiameterEntered)
# Calculating the circumference of a circle
circumference = pi*DiameterFloat
print ("The circumference is: ", circumference)