Conditional Statements in Python
Posted on Wed 26 February 2014 in Python • Tagged with Conditional, Python
In this tutorial we will discuss about conditional statements in python. Conditional statements are used to perform different computation based on the Boolean expression which turns out to be true or false . Boolean expression is on which these conditional statement works. Various Conditional statement used are:
- If
- Else
- Else if …
Continue reading
