Advertisement
Guest User

Untitled

a guest
Mar 21st, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. from Circle import Circle
  2.  
  3. def main():
  4.  
  5. circle1 = Circle()
  6. print("The area of the circle of radius", circle1.radius, "is", circle1.getArea)
  7.  
  8.  
  9. circle2 = Circle(25)
  10. print("The area of the circle of radius", circle2.radius, "is", circle1.getArea)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement