Conditional Statements in Python

Posted on Wed 26 February 2014 in Python • Tagged with Conditional, Python

Conditional Statements in 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

Conditional Statements : Switch Case

Posted on Sat 01 February 2014 in C • Tagged with C language, Conditional, Switch

In the previous tutorial, we've discussed about if - else and nested if - else statements and how we can use them to test certain conditions and execute a block of code depending on whether the condition becomes true or false. In this tutorial, we'll be covering another Conditional Statement used in …


Continue reading

Understanding Conditional Statements: if else

Posted on Sun 12 January 2014 in C • Tagged with Conditional, If-Else, Nested

In this tutorial, we'll uncover something much interesting which would simplify our work as a programer and help us to check if a given condition is true or not. We'll study about the Conditional statements like if - else , if-else if-else, nested if -else and switch (continued in next tutorial)

Understanding …


Continue reading