11 conditional operations in python
1. Using if, elif and else we can perform conditional operations 2. Using conditioanl operations we can execute a block of code based on condition # Below are the python operators to perform conditional operations 1. Arthmetic operators(+,-,*,%,/,//) 1. Uesd to do addition and substraction operations 2. Assignment operators(=,+=,-=,*=,%=,/+,//+) 1. Used to assign value to variable 3. Comparison operators(==,!=,>,>=,<,<=) 1. These operators compare the values on either sides of them and decide the relation among them. They are also called Relational operators. 4. Logical operators(and,or,not) 1. Using logical operations we can execute a block of code based on multiple condition. 5. Membership operators(in,not in) 1. ...