callable function returns True if the object can be called : Callable : Buildin Function PYTHON TUTORIALS


PYTHON TUTORIALS » Buildin Function » Callable »

 

callable function returns True if the object can be called


import string 

print string.punctuation                        
print string.join                                    
print callable(string.punctuation)                  
print callable(string.join)                           
print string.join.__doc__



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Buildin Function
» Callable