Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def circle_length(radius):
- return 2 * 3.14159 * radius
- def circle_area(radius):
- return 3.14159 * radius ** 2
- def main():
- radius = float(input())
- print(circle_length(radius), circle_area(radius))
Advertisement
Add Comment
Please, Sign In to add comment