# Conditionals 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. Visit the following resources to learn more: - [@article@Python Conditional Statements: IF…Else, ELIF & Switch Case](https://www.guru99.com/if-loop-python-conditional-structures.html) - [@article@Conditional Statements in Python](https://realpython.com/python-conditional-statements/) - [@article@How to use a match statement in Python](https://learnpython.com/blog/python-match-case-statement/) - [@article@W3Schools - Python Conditions and If statements](https://www.w3schools.com/python/python_conditions.asp)