[PIPython] problema mappa

Valentino Volonghi aka Dialtone dialtone
Mar 24 Maggio 2005 19:07:08 CEST


Mariano Di Felice wrote:

>ho fatto così:
>
>for key in font_info.iterkeys():
>	if ( font_info.get(key) == fontname ):
>        	<trovato ciò che serve a me!!!>
>        
>
meglio:

for key, value in font_info.iteritems():
    if value == fontname:
        trovato

Il vantaggio e` che hai una .get() in meno che occupa tempo e se il dict
e` grosso e` piuttosto piu` pesante.

-- 
Valentino Volonghi aka Dialtone
Now Running MacOSX 10.3.8
Blog: http://vvolonghi.blogspot.com
http://weever.berlios.de



More information about the Python mailing list