what are the various relational
operates used in Python
Answers
Answered by
1
Relation and Logic are the fundamental bricks of a program that defines its functionality. With these fundamentals, you decide what should be the flow of execution and what conditions should be kept to make sure the flow stays that way.
In every programming language including python, to manage the flow of any program, conditions are required, and to define those conditions, relational and logical operators are required.
Remember those days when your mathematics teacher in school used to ask you if 3 is greater than 2, say yes, otherwise no, that is pretty much what we do in programming world too.
Similar questions