摘要:
Python 生成器 Python 处理文件 Python 异常处理 Python 处理输入输出 Python 处理命令行参数 Python 对文件做校验 Python 对目录做遍历 Python 调用外部命令 Python 收集主机信息 Python 正则表达式 阅读全文
摘要:
__file__ 是 python 的内置变量它的值等于文件名本身 阅读全文
摘要:
__file__ __doc__ __package__ __cached__ __name__ __builtins__ 阅读全文
摘要:
strip() 用于移除字符串开头和结尾的空格或换行符,如果指定参数,则表示移除指定的字符lstrip() 用于移除字符串开头的空格或换行符,如果指定参数,则表示移除指定的字符rstrip() 用于移除字符串结尾的空格或换行符,如果指定参数,则表示移除指定的字符 阅读全文
摘要:
[root@localhost ~]$ yum install -y memcached #!/usr/bin/env python #-*- coding:utf-8 -*- import os import sys from subprocess import Popen, PIPE class Process(object): def __init__(self, nam... 阅读全文