有没有python高手可以帮忙翻一下这段代码到底要我们做什么?满意的话我追加50分

有没有python高手可以帮忙翻一下这段代码到底要我们做什么?满意的话我追加50分importsysimportreimportosimportshutilimportc... 有没有python高手可以帮忙翻一下这段代码到底要我们做什么?满意的话我追加50分import sys
import re
import os
import shutil
import commands

"""Copy Special exercise
"""

# +++your code here+++
# Write functions and modify main() to call them

def main():
# This basic command line argument parsing code is provided.
# Add code to call your functions below.

# Make a list of command line arguments, omitting the [0] element
# which is the script itself.
args = sys.argv[1:]
if not args:
print "usage: [--todir dir][--tozip zipfile] dir [dir ...]";
sys.exit(1)

# todir and tozip are either set from command line
# or left as the empty string.
# The args array is left just containing the dirs.
todir = ''
if args[0] == '--todir':
todir = args[1]
del args[0:2]

tozip = ''
if args[0] == '--tozip':
tozip = args[1]
del args[0:2]

if len(args) == 0:
print "error: must specify one or more dirs"
sys.exit(1)

# +++your code here+++
# Call your functions

if __name__ == "__main__":
main()
展开
 我来答
阳光的雷咩咩
2017-06-10 · TA获得超过1.4万个赞
知道大有可为答主
回答量:2.3万
采纳率:66%
帮助的人:7667万
展开全部
要你补充完整这个程序,实现的功能是,从命令行调用这个程序时,可以输入要压缩的源文件,和目标文件名或文件夹名,并实现压缩
更多追问追答
追问
能不能把带注释的部分翻译成中文?我看看就懂了
追答
谷歌翻译
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式