Related Modules and Documentation : Introduction : Class PYTHON TUTORIALS


PYTHON TUTORIALS » Class » Introduction »

 

Related Modules and Documentation


def foo(data):
    if isinstance(data, int):
        print 'you entered an integer'
    elif isinstance(data, str):
        print 'you entered a string'
    else:
        raise TypeError, 'only integers or strings!'

from operator  import *   
vec1 = [1224]
vec2 = [234]
opvec = (add, sub, mul, div)  
for eachOp  in opvec:         
    for i  in vec1:
       for j  in vec2:
           print '%s(%d, %d= %d' % (eachOp.__name__, i, j, eachOp(i, j))



Leave a Comment / Note


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


PYTHON TUTORIALS

 Navioo Class
» Introduction