Hey guys, this will be my last post, thanks you for the support you have given me so far, if you still have doubts on Python after this, feel free to do your own research or contact me on my mail ID: abinav1708@gmail.com This post will be about if, elif, and else: These three are also a type of conditional operator. There will be a condition on everything except else, so we have to be very specific before putting it, as if none of the conditions listed above are true, the else factor will come into effect in the output. Let me show you a sample code, without output. So, we have to be very careful if we use these, so make sure that you go through my code properly to not make the mistakes I first made. This, especially, is a very delicate concept of Python. So, anyways, I hope you find my last post, and the entire blog insightful, it's been a nice time posting daily, I'll miss you all. This is Abinav, signing out. Goodbye!
Hey guys. This is an interesting, yet simple post on operators. There are three types of operators. 1. Arithmetic Operator This operator type is easy to understand. These are just the signs for the different arithmetic operations. Addition : + Subtraction : - Multiplication : * Division : / 2. Conditional Operators These signify conditions, for example, two statements are given. If we put the AND conditional operator, only if both are true, the output will be true. If we use the OR conditional operator, at least one has to be true for output to be true. If we use the NOT conditional operator, both should be false for the output to be true. 3. Relational Operators These show the relation between 2 integers. The operators are: Equal to : == Not equal to : != Lesser than : < Greater than ...