From 025068fb792b3bc951074f163a9c21bc7b686b90 Mon Sep 17 00:00:00 2001 From: Abhishek Veeramalla Date: Wed, 8 Nov 2023 19:26:12 +0530 Subject: [PATCH 1/2] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 884680f0..0216ba62 100644 --- a/README.md +++ b/README.md @@ -57,8 +57,7 @@ - Example: Automating a log file analysis with a loop to find errors. ## Day 10: Working with Lists (Part 2) -- List comprehensions. -- Nested lists and advanced list operations. +- Advanced list operations. - Practice exercises and examples: - Example: Print list of files in the list of folders provided From 8d0570e441741c48029a2d674ced31425bf9b754 Mon Sep 17 00:00:00 2001 From: sragavan300 Date: Tue, 14 Nov 2023 16:49:22 -0500 Subject: [PATCH 2/2] featureday03 changes --- Day-03/test.py | 14 ++++++++++++++ Day-03/test2.py | 4 ++++ 2 files changed, 18 insertions(+) create mode 100644 Day-03/test.py create mode 100644 Day-03/test2.py diff --git a/Day-03/test.py b/Day-03/test.py new file mode 100644 index 00000000..94920b6c --- /dev/null +++ b/Day-03/test.py @@ -0,0 +1,14 @@ + +value1 = 5; +value2 = 3; + +def addition(): + print (value1 + value2); + +def sub(): + value1 = 20 + value2 = 15 + print (value1 - value2); + +addition() +sub() \ No newline at end of file diff --git a/Day-03/test2.py b/Day-03/test2.py new file mode 100644 index 00000000..58459edc --- /dev/null +++ b/Day-03/test2.py @@ -0,0 +1,4 @@ +import test +val = test.addition(100, 200); + +print("Output:", val)