2011/7/4 Marco Mariani <bir...@gmail.com>

>
> 2011/7/4 Fabrizio Mancini <mr.f...@gmail.com>
>
>
>>  non ho ancora mai toccato p3, ma funziona anche con la 2.6.7 o solo
>> >=2.7?
>>
>
> Si', c'e' gia' e consiglio di provarlo.
> Con la 2.7 hannno aggiunto i {} senza numero e altre cose della 3.2
>

Il solito nitpicker mi fa notare che l'operatore % non è stato deprecato
nella 3.
Vero.

Però da http://docs.python.org/py3k/library/stdtypes.html#index-22 :

The formatting operations described here are obsolete and may go away in
future versions of Python. Use the new *String
Formatting*<http://docs.python.org/py3k/library/string.html#string-formatting>
in
new code.


Inoltre l'operatore % causa dei comportamenti carini come in questo caso
(visto a un talk di Hettinger a Europython):

>>> "%d" % 3 * 3
'333'
>>> "%d" % 3 ** 3
'27'
>>> "%d" % 3 % 3
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: not all arguments converted during string formatting


Mentre:

>>> "{0}".format(3 * 3)
'9'
>>> "{0}".format(3 ** 3)
'27'
>>> "{0}".format(3 % 3)
'0'


Ciao.
Marco.

-- 
http://beri.it/i-miei-libri/ - Qualche libro...
http://stacktrace.it - Aperiodico di resistenza informatica
http://thinkcode.tv/gratis - Capire in 15 minuti cosa può fare Python
_______________________________________________
Python mailing list
Python@lists.python.it
http://lists.python.it/mailman/listinfo/python

Rispondere a