computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
761 B
10 lines
761 B
# 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)
|
|
|