Lab 1B

# Breder Jean Baptiste
# Lab1B – Variable
# Section 9306
# February 21, 2013

# This program calculates the area of a circle
import math
# 1.- Ask the user to input the radius
strRad = input(“please provide the radius: “)
r = fltRad = float(strRad)
# 2.- Calculate the area of the circle

# pi * r * r

area = math.pi * math.pow(r,2)
# 3- Print out the calculated area

print(“The area of the circle cith radius”, r, “is: “, area)