From 55e213ad0319c39daaf3bc1ff12e53098ef1f66a Mon Sep 17 00:00:00 2001 From: Sumanth Date: Thu, 13 Aug 2020 22:33:29 +0000 Subject: [PATCH 1/2] filename mismatch --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 27f9f66..c7f0fc7 100644 --- a/readme.md +++ b/readme.md @@ -430,7 +430,7 @@ To run the python file check the image below. You can run the python file either ### Exercise: Level 2 -1. Create a folder named day_1 inside 30DaysOfPython folder. Inside day_1 folder, create a python file helloword.py and repeat questions 1, 2, 3 and 4. Remember to use _print()_ when you are working on a python file. Navigate to the directory where you have saved your file, and run it. +1. Create a folder named day_1 inside 30DaysOfPython folder. Inside day_1 folder, create a python file helloworld.py and repeat questions 1, 2, 3 and 4. Remember to use _print()_ when you are working on a python file. Navigate to the directory where you have saved your file, and run it. 🎉 CONGRATULATIONS ! 🎉 From 0d17deb0036521bca21cb8a044e7fee512da6d4f Mon Sep 17 00:00:00 2001 From: Sumanth Date: Mon, 17 Aug 2020 11:49:21 +0000 Subject: [PATCH 2/2] changes in day5 --- 05_Day_Lists/05_lists.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/05_Day_Lists/05_lists.md b/05_Day_Lists/05_lists.md index e3d9350..c831438 100644 --- a/05_Day_Lists/05_lists.md +++ b/05_Day_Lists/05_lists.md @@ -233,7 +233,7 @@ fruits[0] = 'avocado' print(fruits) # ['avocado', 'orange', 'mango', 'lemon'] fruits[1] = 'apple' print(fruits) # ['avocado', 'apple', 'mango', 'lemon'] -last_index = len(fruits) +last_index = len(fruits) - 1 fruits[last_index] = 'lime' print(fruits) # ['avocado', 'apple', 'mango', 'lime'] ```