[Python] Funzione type()

lordkrandel lordkrandel a gmail.com
Mar 25 Ott 2011 09:24:52 CEST


> 2011/10/25 Diego Barrera <diegonebarrera a yahoo.it
>     non riesco ad impostare un test tipo
>
>             if type(x) is IntType:
>                 faiqualcosa()
>                 return
>             elif type(x) is LongType:
>                 faiqualcosaltro()
>                 return
>             elif type(x) is FloatType:
>                 faiqualcosaltroancora()
>                 return
>

Python 3.1 sulla mia macchina

 >>type(1) is int
True

 >>class a:
...   pass
 >>b = a()
 >>type(b) == a
True

Questo ad una prima occhiata, puņ essere utile?



-- 
Wyrmskull


Maggiori informazioni sulla lista Python