From 674605f501d8551cf1ef1a11558c9fe8a81faf6c Mon Sep 17 00:00:00 2001 From: Sanju-3690 Date: Sun, 15 Jun 2025 19:10:25 +0530 Subject: [PATCH] Update 4_strings_exercise.md incorrect word on line 13 replaced strong with string --- Basics/Exercise/4_strings/4_strings_exercise.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Basics/Exercise/4_strings/4_strings_exercise.md b/Basics/Exercise/4_strings/4_strings_exercise.md index bf9d1666..b505441f 100644 --- a/Basics/Exercise/4_strings/4_strings_exercise.md +++ b/Basics/Exercise/4_strings/4_strings_exercise.md @@ -10,7 +10,7 @@ Now Print the address in such a way that the street, city and country prints in Now Print "I eat x veggies and y fruits daily" where x and y presents vegetables and fruits that you eat everyday. Use python f string for this. 4. I have a string variable called s='maine 200 banana khaye'. This of course is a wrong statement, the correct statement is 'maine 10 samosa khaye'. -Replace incorrect words in original strong with new ones and print the new string. +Replace incorrect words in original string with new ones and print the new string. Also try to do this in one line. [Solution](https://github.com/codebasics/py/blob/master/Basics/Exercise/4_strings/4_string_exercise_answer.py)