def myprint(v): print v print type(v) try: print v.shape except: try: print len(v) except: pass 黄世宇/Shiyu Huang's Personal Page:https://huangshiyu13.github.io/
print v
print type(v)
try:
print v.shape
except:
try:
print len(v)
except:
pass
黄世宇/Shiyu Huang's Personal Page:https://huangshiyu13.github.io/