Skip to content

Instantly share code, notes, and snippets.

@daniel-obrien
Created October 31, 2016 21:17
Show Gist options
  • Save daniel-obrien/03f049d4bca8cd3be9f5fb6bcb6ffd92 to your computer and use it in GitHub Desktop.
Save daniel-obrien/03f049d4bca8cd3be9f5fb6bcb6ffd92 to your computer and use it in GitHub Desktop.
Circle Circumfrence
def circlearea(radius):
print("Ok so you want the circumfrence of a circle.....")
print("Did you Remember pi!!!")
answer = 2*3.14*radius
print(answer)
circlearea()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment