diff options
Diffstat (limited to 'progs/a145.py')
-rw-r--r-- | progs/a145.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/progs/a145.py b/progs/a145.py new file mode 100644 index 0000000..9f27291 --- /dev/null +++ b/progs/a145.py @@ -0,0 +1,6 @@ +def sector_area(r,a):
+ pi=22/7
+ if a >= 360:
+ return None
+ sectorarea = (pi*r**2) * (a/360)
+ return sectorarea
\ No newline at end of file |