From dcda480c1a6e3a524de466460b033108790e6ecd Mon Sep 17 00:00:00 2001 From: Aditya Kj Date: Mon, 23 Oct 2023 16:43:44 +0530 Subject: [PATCH 1/2] string split commit-1 --- Day-02/examples/01-string-split.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Day-02/examples/01-string-split.py b/Day-02/examples/01-string-split.py index 3a61b5d4..b738438a 100644 --- a/Day-02/examples/01-string-split.py +++ b/Day-02/examples/01-string-split.py @@ -1,3 +1,3 @@ -text = "Python is awesome" +text = "Python is awesome for DevOps" words = text.split() print("Words:", words) From 025068fb792b3bc951074f163a9c21bc7b686b90 Mon Sep 17 00:00:00 2001 From: Abhishek Veeramalla Date: Wed, 8 Nov 2023 19:26:12 +0530 Subject: [PATCH 2/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