+ 3
What is the name and use of <> operater?
2 ответов
+ 2
It means that this not the same. It's removed in Python 3, now use !=. But there is an easter egg that let you use <> :
>>> from __future__ import barry_as_FLUFL
>>> 10 <> 100
True
+ 1
Language?