From f708d99d5e3bb34b8928caf2a83d50d15ec76134 Mon Sep 17 00:00:00 2001 From: Mbasha Seth <48843795+Mbashas@users.noreply.github.com> Date: Sat, 14 Oct 2023 23:12:34 +0300 Subject: [PATCH] day13 --- Seth_A99501/day13.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Seth_A99501/day13.py diff --git a/Seth_A99501/day13.py b/Seth_A99501/day13.py new file mode 100644 index 00000000..ca2a71fb --- /dev/null +++ b/Seth_A99501/day13.py @@ -0,0 +1,6 @@ +#importing the module tha calcute the area of a circle +import circleArea +#calculating the area +area=circleArea.calculateArea(45) +#printing the area +print(area)