InterviewSolution
Saved Bookmarks
| 1. |
What are the 2 different Conditional Statements In Python? |
|
Answer» ONG>ANSWER: "if condition" – It is used when you need to print out the result when one of the conditions is true or FALSE. "else condition"- it is used when you want to print out the statement when your one condition FAILS to meet the requirement. "elif condition" – It is used when you have third possibility as the OUTCOME. |
|