diff --git a/README.md b/README.md
index 4220f9a..1b3eef2 100644
--- a/README.md
+++ b/README.md
@@ -246,6 +246,8 @@ In-case it says "python not found" in cmd, follow this [tutorial](https://www.yo
(a.)Flow of Code
Just like how we read books from top to bottom and left to right, the flow of the code works in the same way usually in python as well (Just like how it's done in C, C++ or Java). The [python interpreter]() reads the code from the 1st line to the last line provided there aren't any jump statements like function calls or decision/conditional statements or looping statements that would make a piece of code loop again and again until a specific condition is met. This is important to keep in mind as we have to make sure the right line of code is being executed at the right time or else we won't get the desired results.
+Add examples to the 'Loops' for better understanding.
+
(b.) Semi-colons in Python
Unlike C, C++ languages, Python doesn't require a semi-colon (;) to end a line of code. The python interpreter itself understands a new line as end of that line of code. Even though semi-colon isn't required, python still supports usage of semi-colon and is used the same way as in C & C++. It can be used to write two lines of code in one by using a semi-colon
@@ -2735,14 +2737,12 @@ print (a==" ") #False, comparing to empty space
---
-