Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created March 12, 2018 06:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/a22d00066b4b2e94e524eab603ccbe15 to your computer and use it in GitHub Desktop.
Save codecademydev/a22d00066b4b2e94e524eab603ccbe15 to your computer and use it in GitHub Desktop.
Codecademy export
"""Select and calculate the area of a circle and triangle using this calculator"""
from math import pi
from time import sleep
from datetime import datatime
now = datetime.now()
print "Calculator is starting..."
print "Current time: %s/%s/%s %s:%s" % (now.month, now.day, now.year, now.hour, now.minute)
sleep(1)
hint = "Don't forget to include the correct units! \nExiting..."
option = raw_input("Enter C for Circle or T for triangle: ")
option = option.upper()
if option == 'C':
radius = float(raw_input("Enter radius: "))
area = pi * radius ** 2
print "The pie is baking..."
sleep(1)
print ("Area: %.2f. \n%s" % (area, hint))
elif option == 'T':
base = float(raw_input("Enter base: "))
height = float(raw_input("Enter height: "))
area = 0.5 * base * height
print "Uni Bi Tri..."
sleep(1)
print ("Area: %.2f. \n%s") % (area, hint))
else:
print "Error! Invalid Shape Selector specified. Exiting."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment