Open 函数
打开文件
f=open('/tmp/hello','w')
#open(路径+文件名,读写模式)
#读写模式:r只读,r+读写,w新建(会覆盖原有文件),a追加,b二进制文件.常用模式
readlines 函数
读取文件
read() 每次读取整个文件,它通常用于将文件内容放到一个字符串变量
readlines()自动将文件内容分析成一个行的列表,该列表可以由 Python 的 for... in ... 结构进行处理。
当没有足够内存可以一次读取整个文件时,才应该使用.readline()
f = open('c:\\aa.txt')
for line in f.readlines():
range 函数
规定一个范围
函数原型:range(start, end, scan):
for i in range(5):
print i
i += 2
print i
len 函数
len 方法返回字符串长度
len(str)
os模块 popen方法
popen保存命令的执行结果
import os
ip_read = os.popen("ipconfig").read()
print(ip_read)