Python Programming - Circumference of a Circle

Introduction: 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)

Be the First to Share

    Recommendations

    • Game Design: Student Design Challenge

      Game Design: Student Design Challenge
    • Big and Small Contest

      Big and Small Contest
    • For the Home Contest

      For the Home Contest

    Comments