python 如何判断函数有没有描述文档
答案:2 悬赏:0 手机版
解决时间 2021-03-19 10:56
- 提问者网友:风月客
- 2021-03-19 06:06
python 如何判断函数有没有描述文档
最佳答案
- 五星知识达人网友:骨子里都是戏
- 2021-03-19 06:54
用__doc__属性,比如:
>>> import os
>>> print os.makedirs.__doc__
makedirs(path [, mode=0777])
Super-mkdir; create a leaf directory and all intermediate ones.
Works like mkdir, except that any intermediate path segment (not
just the rightmost) will be created if it does not exist. This is
recursive.
>>>
>>> import os
>>> print os.makedirs.__doc__
makedirs(path [, mode=0777])
Super-mkdir; create a leaf directory and all intermediate ones.
Works like mkdir, except that any intermediate path segment (not
just the rightmost) will be created if it does not exist. This is
recursive.
>>>
全部回答
- 1楼网友:我住北渡口
- 2021-03-19 07:28
不知道你的自身重新运行是什么意思?递归?还是调用?
以前写的,复制文件夹的,可以看看,希望对你有帮助!
import os
import shutil
def my_copytree(src, dst):
names = os.listdir(src)
if not os.path.exists(dst):
os.mkdir(dst)
for name in names:
srcname = os.path.join(src, name)
dstname =os.path.join(dst, name)
if os.path.isdir(srcname):
my_copytree(srcname, dstname)#使用递归的方式遍历文件夹
else:
if (not os.path.exists(dstname)or ((os.path.exists(dstname))and (os.path.getsize(dstname) != os.path.getsize(srcname)))):
#print dstname
shutil.copy2(srcname, dst)
if __name__ == '__main__':
src='c:\\caselog'
dst='c:\\bug'
my_copytree(src,dst) ----此处调用
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯