Pre defined system function for reflection : isinstance : Development : Python examples (example source code) Organized by topic

C++
PHP
Python


Python  »  Development   » [  isinstance  ]  Screenshots 
 



Pre defined system function for reflection

import types

isinstance([1],list)

type([1])==list

type([1])==type([])

type([1])==types.ListType


           
       
Related examples in the same category
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.