Skip to content

Instantly share code, notes, and snippets.

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