1.模块 1.1 pickle模块 # ### pickle 序列化模块 import pickle """ 序列化: 把不能够直接存储的数据变得可存储 反序列化: 把数据恢复成原本的数据格式 serialize 序列化 unserialize 反序列化 """ # 正常情况下,不能够直接把容器类型数据等直接存储在文件当中 """ with open("ceshi.txt",mode="…
1,正则复习,re.S,这个在用的最多,re.M多行模式,这个主要改变^和$的行为,每一行都是新串开头,每个回车都是结尾.re.L 在Windows和linux里面对一些特殊字符有不一样的识别,re.L 是根据当前的操作系统来识别,这个不推荐使用,他就不一样了.正常还是走我们的记得意思,re.U 这个对于ASCII码是一样的,对于中文才使用Unicode,re.X和re.M有点像 import re ret = re.findall('.*\d+','hsd739y8kk \ns99sihf99…
时间模块 import time # print(time.time()) #时间戳 # print(time.strftime('%Y-%m-%d %X')) #格式化字符 # print(time.strftime('%Y-%m-%d %H-%M-%S')) # print(time.localtime()) #时间字符串 # print(time.struct_time) #时间戳是计算机能够识别的时间,格式化时间字符串是人能看的时间,元组用来操作时间 # print(time.local…
一.模块 模块的本质就是一个.py 文件. 导入和调用模块: import module from module import xx from module.xx.xx import xx as rename from module.xx.xx import * 模块调用时发生了三件事: import  1.创建名称空间 2.执行模块文件 3.在执行文件中创建一个名称 指向模块的名称空间 from 1.创建名称空间 2.执行模块文件 3.把模块中的名称复制到当前名称空间 注意:模块一旦被调用,即…
time模块 在Python中,通常有这几种方式来表示时间: 时间戳(timestamp) :         通常来说,时间戳表示的是从1970年1月1日00:00:00开始按秒计算的偏移量.我们运行“type(time.time())”,返回的是float类型. 格式化的时间字符串 元组(struct_time)   :         struct_time元组共有9个元素共九个元素:(年,月,日,时,分,秒,一年中第几周,一年中第几天,夏令时) import time # 1 time(…
使用file文件处理时,写入的必须是str ,否则会报错. 例如:要把一个字典写入文件,写入时会报错 ,就算转换成str格式写入,读取的时候也不能按照dict格式读. >>> info={ ... 'jack':123, ... ' ... } >>> with open('test.txt','w') as f: ... f.write(info) ... Traceback (most recent call last): File "<stdin&…
random模块 常用方法 random.random() 随机产生一个小于1的浮点数 import random print(random.random()) #0.41537618182768266 random.randint(start,stop)随机产生一个由start 到stop的整数 print(random.randint(0,9)) #3 random.randrange ( start,stop ) 随机产生一个由start开始到小于stop的整数 print(random.…
1.时间模块 time 2.随机数模块 random 3.与操作系统交互模块 os 4.系统模块 sys 在我们真正开始学习之前我们先解决下面几个问题,打好学习模块的小基础,以便更好的学习模块. (1)什么是模块? 模块就是别人写好的代码,放在一个py文件里,给你使用. 注意:py起名的时候不要和这些我们已经只好模块名重复. (2)模块有几种? 三种:内置模块\第三方模块\自定义模块. (3)内置模块:和IDE一起安装上的 第三方模块:官网 pypi,python默认的可以通过pip安装的. (…
摘自:http://blog.csdn.net/cdefg198/article/details/7520398 using System.IO; using System.Web.Script.Serialization; using System.Runtime.Serialization.Json; public static List<T> JSONStringToList<T>(this string JsonStr) { JavaScriptSerializer Ser…
import pickle, json, csv, os, shutil class PersistentDict(dict): ''' Persistent dictionary with an API compatible with shelve and anydbm. The dict is kept in memory, so the dictionary operations run as fast as a regular dictionary. Write to disk is d…