From b27dacc6447edf5c83764250ea425f142544b3ff Mon Sep 17 00:00:00 2001 From: Jacobus Burger Date: Tue, 11 Oct 2022 13:42:13 -0800 Subject: [PATCH] Include Python 3.10 match-case in conditionals (#2419) Include the recent addition (from Python 3.10 upwards) of the match-case statement under the conditionals node of the Python roadmap. Also, correct some grammar mistakes. --- .../108-python/content/100-python-basics/102-conditionals.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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