রিলেশনাল অপারেটরস

>>> a = 4
>>> b = 3
>>> a > b
True
>>> b < a
True
>>> a == b
False
>>> a <= b
False
>>> a >= b
True
>>> a != b
TrueLast updated
Was this helpful?

>>> a = 4
>>> b = 3
>>> a > b
True
>>> b < a
True
>>> a == b
False
>>> a <= b
False
>>> a >= b
True
>>> a != b
TrueLast updated
Was this helpful?
Was this helpful?