Lesson 5 - Conditional Statements Hi All, I start the lesson with an example You need a drink but based on some condition like color, you ask shop keeper if you have white drink please give me 2 and if you don't have white give me any 1. So, in above example you use conditions. Similarly in programs we use condition to sort out the results. Another example is finding the grade based on your percentage. If percentage is between 90 - 100 your grade is A+ and so on. Syntax: The keyword 'if' is used for condition with conditional operators Example a = 20 b = 10 if a > b: print("a is greater than b") Now you observe in above example if a is greater than b than it prints "a is greater than b" but if not than it didn't print anything. To handle this use case we use else if a > b: print("a is greater than b") else: print("a is not greater than b") For some cases we have multiple conditions to check for example do some ta...