C-16-Q101mediumsingle_mcq
Which operator means "not equal"?
Which operator means "not equal"?
- a
== - b
<> - c
!= - d
=!
ব্যাখ্যা
Python uses != to test inequality, returning True when the two operands differ. The older <> form is not valid in Python 3.