From 9dc0c5360700e971f32ca327138c346f627b071f Mon Sep 17 00:00:00 2001 From: Santosh Das Date: Sun, 24 Mar 2024 18:30:19 +0530 Subject: [PATCH 1/2] my test script --- Day-03/test.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Day-03/test.py diff --git a/Day-03/test.py b/Day-03/test.py new file mode 100644 index 00000000..bf030eb9 --- /dev/null +++ b/Day-03/test.py @@ -0,0 +1,25 @@ +a = 15 +b = 10 + +def addition(): + print(a + b) + +def sub(): + print(a -b) + +addition() +sub() + + +#################### + +def addition(): + a = 15 + b = 10 + print(a + b) + +def sub(): + print(a -b) + +addition() +sub() \ No newline at end of file From ee1c8957ea928c1ca372bedb922124542e28934f Mon Sep 17 00:00:00 2001 From: Santosh Das Date: Thu, 15 Aug 2024 11:26:42 +0530 Subject: [PATCH 2/2] test --- Day-02/examples/test.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Day-02/examples/test.py diff --git a/Day-02/examples/test.py b/Day-02/examples/test.py new file mode 100644 index 00000000..a81d282d --- /dev/null +++ b/Day-02/examples/test.py @@ -0,0 +1,3 @@ +arn = "arn:aws:iam::123456789012:user/johndoe" + +print (arn.split("/")[1]) \ No newline at end of file