pythonworkspace_python中常⽤的模块⼀
⼀,常⽤的模块
模块就是我们将装有特定功能的代码进⾏归类,从代码编写的单位来看我们的程序,从⼩到⼤的顺序:
⼀条代码
引⼊模块的⽅式
1,import 模块
2,from xxx import 模块
⼆,collections模块
collections 模块主要封装了⼀些关于集合类的相关操作,⽐如我们学过的iterable,iterator等等.除了这些以外,collections
还提供了⼀些除了基本数据类型以外的数据集合类型,Counter,deque,OrderDict,defaultdict以及namedtuple
1,counter是⼀个计数器,主要⽤来计数
计算⼀个字符串中每个字符出现的次数:
#import collections
from collections importCounter
中国面条网
⽅法⼀
s= "I am sylar, I have a dream, "dic={}for el ins:
dic[el]= dic.setdefault(el, 0) + 1
print(dic)
⽅法⼆
qq=Counter(s)print("__iter__" indir(qq))for item inqq:print(item, qq[item])#显⽰#{'I': 2, ' ': 7, 'a': 5, 'm': 3, 's': 1, 'y': 1, 'l': 1, 'r': 3, ',': 2, 'h': 1, 'v': 1, 'e': 4, 'd': 2, 'f': 1, 'o': 1, '.': 4}
计算列表中"五花马"出现的次数
lst= ["五花马", "千⾦裘", "不会", "不会", "不会"]
c=Counter(lst)print(c['五花马'])
打印字典中两个key
dic= {"a":"b", "c":"d"}print(dic.keys())
2 deque 双向队列
两种数据结构:1栈,2,队列
1,栈:FILO.先进后出    2对列:FILO.先进先出
例⼦栈
from collections import Counter
class Stack:
def __init__(self, size):
self.index = 0 # 栈顶指针
self.lst = []
self.size = size
# 给栈添加元素
def push(self, item):
if self.index == self.size:
# 栈已经满了. 不能再装东西了
raise StackFullError('the stack is full')
2010年6月思想汇报self.lst.insert(self.index, item) # 对于空列表. 需要insert插⼊内容# self.lst[self.index] = item # 把元素放到栈⾥
self.index += 1 # 栈顶指针向上移动
# 从栈中获取数据
def pop(self):
if self.index == 0:
raise StackEmptyError("the stack is empty")
self.index -=1 # 指针向下移动
item = self.lst.pop(self.index) # 获取元素. 删除.
return item
s = Stack(5)
s.push("馒头1号")
s.push("馒头2号")
s.push("馒头3号")
s.push("馒头4号")
s.push("馒头5号")
print(s.pop())
print(s.pop())
print(s.pop())
print(s.pop())
print(s.pop())
#
#
lst = []
lst.append("哈哈1")
lst.append("哈哈2")奶茶千金蒋瑶佳
lst.append("哈哈3")
lst.append("哈哈4")
print(lst.pop())
print(lst.pop())
print(lst.pop())
print(lst.pop())
队列例⼦⼀
import queue
#
q = queue.Queue() # 创建队列
q.put("李嘉诚")
q.put("陈冠希")
q.put("周润发")
q.put("吴彦祖")
())
())
())
())
# ()) # 队列中如果没有元素了. 继续获取的话. 会阻塞print("拿完了")
例⼦⼆
from collections import deque
q = deque() # 创建⼀个双向队列
q.append("⾼圆圆")
q.append("江疏影")
q.appendleft("赵⼜廷")
q.appendleft("刘⼤哥")
# 刘⼤哥 赵⼜廷 ⾼圆圆 江疏影
print(q.pop()) # 从右边获取数据
海天盛筵游戏print(q.pop())
print(q.popleft()) # 从左边获取数据
print(q.popleft())
print(q.pop())
3 namedtuple命名元组
命名元组,给元组内的元素进⾏命名,
from collections import namedtuple
# ⾃⼰定义了⼀个元组, 如果灵性够好, 这其实就是创建了⼀个类
nt = namedtuple("point", ["x", "y"])
p = nt(1, 2)
print(p)
print(p.x)
print(p.y)
4 orderdict和defaultdict
orderdict 顾名思义. 字典的key默认是⽆序的. ⽽OrderedDict是有序的
dic = {'a':'娃哈哈', 'b':'薯条', 'c':'胡辣汤'}
print(dic)
from collections import OrderedDict
od = OrderedDict({'a':'娃哈哈', 'b':'薯条', 'c':'胡辣汤'})
print(od)
defaultdict: 可以给字典设置默认值. 当key不存在时. 直接获取默认值:
from collections import defaultdict
dd = defaultdict(list) # 默认值list
print(dd['娃哈哈']) # [] 当key不存在的时候. 会⾃动执⾏构造⽅法中传递的内容.
defaultdict
d = defaultdict(list) # {} # 参数位置给的内容必须是可调⽤的
d["周杰伦"] = "昆凌"
马里山邹文杰
print(d["周杰伦"]) # 从字典中获取数据的时候. 如果这个key不存在. 去执⾏可执⾏的内容, 拿到的是⼀个空列表例⼆
lst= [11,22,33,44,55,66,77,88,99]
d = defaultdict(list)
for el in lst:
if el < 66:
d["key1"].append(el) # key1默认是不存在的. 但是可以拿key1. ⼀个空列表.
else:滕王阁序全篇
d["key2"].append(el)
print(d)
例三
def func():
return "胡辣汤"
d = defaultdict(func)
print(d["哈哈"])
print(d)
三. 时间模块
时间模块应⽤于如何计算时间差如何按照客户的要求展⽰时间
例如
import time
print(time.time()) # 1538927647.483177 系统时间
系统时间是上⾯的⼀连串的数字,需要对时间进⾏格式化,那样就引出了另⼀种时间格式
在python中时间有三种表现形式
1. 时间戳(timestamp). 时间戳使⽤的是从1970年01⽉01⽇ 00点00分00秒到现在
⼀共经过了多少秒... 使⽤float来表⽰
获取当前系统时间, 时间戳
print(time.time()) # 1542166230.6139991, 给机器看的, 以1970-01-01 00:00:00 数据库存储的是这个时间格式化时间 2018-11-14 11:22:56 2018/11/14 11:22:56
2. 格式化时间(strftime). 这个时间可以根据我们的需要对时间进⾏任意的格式化.
import time
s = time.strftime("%Y-%m-%d %H:%M:%S") # 必须记住
print(s)
⽇期格式化的标准:
%y 两位数的年份表⽰(00-99)
%Y 四位数的年份表⽰(000-9999)
%m ⽉份(01-12)
%d ⽉内中的⼀天(0-31)
%H 24⼩时制⼩时数(0-23)
%I 12进时制⼩时数(01-12)
%M 分钟数(00=59)
%S 秒(00-59)
%a 本地简化星期名称
%A 本地完整星期名称
%b 本地简化的⽉份名称
%B 本地完整的⽉份名称
%c 本地相应的⽇期表⽰和时间表⽰
%j 年内的⼀天(001-366)