Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Some properties of a given circle
- # A
- r = 5
- d = 2 * r
- c = 2 * math.pi * r
- a = math.pi * (r ** 2)
- # B
- r = 5
- d = 10
- c = 31.41592653589793
- a = 78.53981633974483
- # Which is better, and why?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement