Computer Science, asked by mukeshsingh00666, 8 months ago

Which of the following is not a relational operator in Python? *​

Answers

Answered by BearKnight
2

Answer:

Operator Name Description

!= Not equal to Checks whether two operands are not equal

Answered by bhuvna789456
0

Answer:

          ! is not a relational operator, it is a logical operator.

Explanation:

   Relational operators are >, <, >=, <=, ==, != .  

    Logical operators are !, |, || &, && .

  • A  relational operator is a mathematical symbol that is used to compare two values.
  • The result of a comparison can be true, false, or sometimes unknown.
  • Relational operators are mainly important for making decisions.
  • Another name of relational operators is comparative operators.
Similar questions