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 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