Python Conditional Statements
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiwol2FASih0Oh_tm53IOShQRrTaQqXb3dCUulHF-7wne6mFcWa5EWUpLyhlPbQnrELmuxb2XQZTfu6Ed6_FlPZjnD9NIM-zSmht82MAZESg1WADSKrsMdv_QlaBSB1ZXv76TyVy8EmOx8/s640/python_conditional_statement.jpg)
Hello guys...., In this session of tutorials we will see what are Python Conditional Statements and How to use them in programming... First of all its important to know what conditional statements means.... I would like to explain this with an example: Now, In everyday life we all need to take some decisions based on conditions, like " If movie review is good, then i'll watch a movie" or you can just say, " If lecture is scheduled today i'll take my Book" and may such if statements. This all decision making statements which are based on some conditions are called conditional statements. Same kind of conditional statements are also used in Python Programming Language, they are Python Conditional Statements IF statement IF ELSE statement IF ELIF (IF-ELSE-IF) statement NESTED IF statement We will be seeing all this statements and how to use them in programming in details. IF statement This statement is used to execute one or mo...