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/
微信扫一扫
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/
相关推荐