当前位置 : 主页 > 编程语言 > python >

Python之打印变量

来源:互联网 收集:自由互联 发布时间:2022-07-17
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/​​



上一篇:Python导入不同文件夹下模块
下一篇:没有了
网友评论