Python文件操作,时间日期操作,collections增强,Deque(类似java的LinkedList),OrderedDict,Counter
1、文件操作的案例:#文件操作的三种方式#r=read读取文件#w=write写入文件,覆盖掉#a=append追加写入,不会覆盖原有的内容#读文件f=open("E://wordcount//input//1.txt","r")data=f.read()print(data)#读文件一行一行的读取path="E://wordcount//input//1.txt"f=open(path,"r")