首页 > 代码库 > Python之打印变量

Python之打印变量

def myprint(v):
    print v
    print type(v)
    print v.shape

 

Python之打印变量