top of page

IN THIS video I have taught

Relational Operators
Those operators which tell us the relationship between two variables are called Relational Operators. These operators are also known as Comparison Operator because they compare the value of variables and determine the relationship based on comparison. The result of these operators is in the form of True or False. 
​
Logical Operators
Logical operators are used to control the flow of program execution. These operators are mainly used in conditionals to draw comparison between two variables.
​
The three main types of logical operators are:
AND Operator: It joins two relations such that it returns true value when both the expressions produce true output.
OR Operator: It joins two relations such that it returns true value when any of the two or both the expressions produce true output.
NOT Operator: It is used to reverse the result of a test expression.
 
String OPERATORS
While programming, sometimes you may have to perform operation on string values.
In Python,two types of string operator are follows:
​
Concatenation Operator(+):
This operator is used to concatenate or join two strings.
 
Replication Operator(*) :
This operator is used to replicate a given string for the specified number of times.
bottom of page