#!/usr/bin/env python # *_* coding=utf-8 *_* """ desc: 文件方法 ############################# file.read() #read([size]) -> read at most size bytes, returned as a string. file.readline() readline([size]) -> next line from the file, as a st…
传送门 Python执行系统命令的方法 http://www.linux-field.com/?p=15 Python中执行系统命令常见方法有两种: 两者均需 import os (1) os.system # 仅仅在一个子终端运行系统命令,而不能获取命令执行后的返回信息 system(command) -> exit_statusExecute the command (a string) in a subshell. # 如果再命令行下执行,结果直接打印出来 >>> os.sy…