diff --git a/content/roadmaps/108-python/content/100-python-basics/102-conditionals.md b/content/roadmaps/108-python/content/100-python-basics/102-conditionals.md
index 1502ef975..a769f8f39 100644
--- a/content/roadmaps/108-python/content/100-python-basics/102-conditionals.md
+++ b/content/roadmaps/108-python/content/100-python-basics/102-conditionals.md
@@ -1,9 +1,10 @@
# Conditionals
-Conditional Statement in Python perform different computations or actions depending on whether a specific Boolean constraint evaluates to true or false. Conditional statements are handled by IF statements in Python.
+Conditional Statements in Python perform different actions depending on whether a specific condition evaluates to true or false. Conditional Statements are handled by IF-ELIF-ELSE statements and MATCH-CASE statements in Python.
Free Content
Python Conditional Statements: IF…Else, ELIF & Switch Case
Conditional Statements in Python
+How to use a match statement in Python