资源简介
Python is an ideal language for solving problems, especially for Linux and Unix. With this pragmatic book, administrators can review various tasks that often occur in the management of these systems, and learn how Python can provide a more efficient way to handle them. Once you finish this book, you
代码片段和文件信息
#!/usr/bin/env python
import optparse
import os
def main():
p = optparse.OptionParser(description=“Python ‘ls‘ command clone“
prog=“pyls“
version=“0.1a“
usage=“%prog [directory]“)
p.add_option(“--chatty“ “-c“ action=“store“ type=“choice“
dest=“chatty“
choices=[“normal“ “verbose“ “quiet“]
default=“normal“)
options arguments = p.parse_args()
print options
if len(arguments) == 1:
if options.chatty == “verbose“:
print “Verbose Mode Enabled“
path = arguments[0]
for filename in os.listdir(path):
if options.chatty == “verbose“:
print “Filename: %s “ % filename
elif options.chatty == “quiet“:
pass
else:
print filename
else:
p.print_help()
if __name__ == ‘__main__‘:
main()
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2008-10-24 14:07 code\
文件 6148 2008-10-24 14:07 code\.DS_Store
目录 0 2008-10-24 14:07 __MACOSX\
目录 0 2008-10-24 14:07 __MACOSX\code\
文件 82 2008-10-24 14:07 __MACOSX\code\._.DS_Store
目录 0 2008-10-24 14:05 code\.svn\
文件 86 2008-10-24 14:05 code\.svn\all-wcprops
文件 463 2008-10-24 14:05 code\.svn\entries
文件 2 2008-10-24 14:05 code\.svn\format
目录 0 2008-10-24 14:05 code\.svn\prop-ba
目录 0 2008-10-24 14:05 code\.svn\props\
目录 0 2008-10-24 14:05 code\.svn\text-ba
目录 0 2008-10-24 14:05 code\.svn\tmp\
目录 0 2008-10-24 14:05 code\.svn\tmp\prop-ba
目录 0 2008-10-24 14:05 code\.svn\tmp\props\
目录 0 2008-10-24 14:05 code\.svn\tmp\text-ba
目录 0 2008-10-24 14:05 code\commandline\
目录 0 2008-10-24 14:05 code\commandline\.svn\
文件 98 2008-10-24 14:05 code\commandline\.svn\all-wcprops
文件 285 2008-10-24 14:05 code\commandline\.svn\entries
文件 2 2008-10-24 14:05 code\commandline\.svn\format
目录 0 2008-10-24 14:05 code\commandline\.svn\prop-ba
目录 0 2008-10-24 14:05 code\commandline\.svn\props\
目录 0 2008-10-24 14:05 code\commandline\.svn\text-ba
目录 0 2008-10-24 14:05 code\commandline\.svn\tmp\
目录 0 2008-10-24 14:05 code\commandline\.svn\tmp\prop-ba
目录 0 2008-10-24 14:05 code\commandline\.svn\tmp\props\
目录 0 2008-10-24 14:05 code\commandline\.svn\tmp\text-ba
目录 0 2008-10-24 14:05 code\commandline\code\
目录 0 2008-10-24 14:05 code\commandline\code\.svn\
文件 1918 2008-10-24 14:05 code\commandline\code\.svn\all-wcprops
............此处省略1598个文件信息
- 上一篇:Jenkins_python一步一步环境配置
- 下一篇:WCI指数计算器1.0版
相关资源
- Jenkins_python一步一步环境配置
- Python Tricks: A Buffet of Awesome Python Feat
- Learning scikit-learn Machine Learning in Pyth
- python programming on win32
- 物联网Python开发实战书的源代码
- Python通讯录程序代码
- Python - 弹弹堂小游戏
- Python编程从入门到实践(图灵程序设
- python-pygame-消消乐
- An Introduction to Statistics with Python.pdf
- 李飞飞深度学习全部作业python源代码
- Python编程:从入门到实践(高清完整
- Python飞机大战代码括音效,图片,字
- python3+实现视频转图片和图片转视频
- Python语言程序设计基础(第2版)-嵩天
- “笨办法”学python(第3版).pdf
- Python飞机大战 图片+音乐
- 廖雪峰python3 高清完整
- 基于Python的图像分类
- Djangopython实现数据挖掘和分析.doc
- 使用python实现人工智能算法
- GBDT单机版Python实现源代码
- Python实现跟踪、光流、前景检测
- 多元线性回归python实现
- seleniumwebdriverpython第三版.pdf
- IEDriverServer_64位操作系统,支持selen
- 编写高质量代码:改善Python程序的91个
- 基于python的新冠疫情数据分析.zip
- python 机器学习 scikit-learn 手册 高清完
- 深度学习入门:基于 Python 的理论与实
评论
共有 条评论