<p dir="ltr">Il 21/dic/2013 07:51 "Nicola Larosa" <<a href="mailto:nico@teknico.net">nico@teknico.net</a>> ha scritto::</p>
<p dir="ltr">> Un'alternativa è l'operatore "<>" (caro a Barry Warsaw, vedi codebase di<br>
> Mailman). Però è stato deprecato in Python 3 perchè:<br>
><br>
> $ python<br>
> >>> import this<br>
> The Zen of Python, by Tim Peters<br>
><br>
> [...]<br>
> There should be one-- and preferably only one --obvious way to do it.<br>
> [...]</p>
<p dir="ltr">a meno di mandare in pensione Guido con::</p>
<p dir="ltr"> u0_a140@android:/ $ python<br>
Python 3.2.2 (default, Apr 19 2012, 12:16:58)<br>
[GCC 4.4.3] on linux-armv7l<br>
Type "help", "copyright", "credits" or "license" for more information.<br>
>>> 1 != 0<br>
True<br>
>>> 1 <> 0<br>
File "<stdin>", line 1<br>
1 <> 0<br>
^<br>
SyntaxError: invalid syntax<br>
>>> from __future__ import barry_as_FLUFL<br>
>>> 1 != 0<br>
File "<stdin>", line 1<br>
1 != 0<br>
^<br>
SyntaxError: invalid syntax<br>
>>> 1 <> 0<br>
True<br>
>>></p>
<p dir="ltr">;-)</p>
<p dir="ltr">[bambini non fate queste cose a casa]<br>
</p>