#George P Burdell #gburdell3@gatech.edu 902112358 #I worked on this assignment alone, using only this #semester's course materials from math import * #notice the proper location for import statements #no parameters, no return statement def greet(): name = input("Please enter your name") print("Hello,", name, "nice to meet you!") #one parameter, no return statement def twoPower(n): result = pow(2, n) print("2 to the power", n, "is", result) #two parameters, one return value def rectangleArea(length, width): area = length * width return area #PLEASE DON'T INCLUDE ANY FUNCTION CALLS WHEN YOU #TURN IN YOUR ASSIGNMENT UNLESS DIRECTLY SPECIFIED