适合新手小白复习用~
1.标准库
1.1 time
函数及方法:
time()
ctime() 返回时间戳对应的struct_time对象
gmtime() 获取当前时间返回时间戳对应的struct_time对象 格林威治时间
mktime()
strftime()
strptime()
%a星期几缩写
%A星期完整名称
%b月名完整名称
%B完整月名
%d日期
%H 24小时制
%I 12小时制
%j一年中的一天
%m月份01-12
%M分钟数00-59
%p上午下午AM,PM
%S秒数00-59
%U一年中的星期数
%w星期数0-6
%W一年中的星期数
%x本地相应日期的表示
%X本地相应时间表示
%y两位数的年份
%Y四位数的年份
%Z当前时区的名称
from time import *
t=gmtime()
print(strftime('%H',t))
print(gmtime())
print(localtime())
print(ctime())
09
time.struct_time(tm_year=2021, tm_mon=9, tm_mday=25, tm_hour=9, tm_min=45, tm_sec=45, tm_wday=5, tm_yday=268, tm_isdst=0)
time.struct_time(tm_year=2021, tm_mon=9, tm_mday=25, tm_hour=17, tm_min=45, tm_sec=45, tm_wday=5, tm_yday=268, tm_isdst=0)
Sat Sep 25 17:45:45 2021
1.2 random
random() 产生[0,1.0)的小数
seed()
randint(a,b) 产生[a,b]的整数
uniform(a,b) 产生范围为[a,b]的小数
randrange(a,b,c) 产生[a,b]的步长为c的整数
getrandbits(k) 产生二进制位数为k的随机整数
choice(seq) 从序列类型seq中随机返回一个元素
shuffle() 打乱
sample(seq,k) 从序列类型seq中随机返回k个元素
2.第三方库
2.1 jieba
lcut()
lcut(s,cut_all=True)
lcut_for_search(s)
add_word('word')
2.2 turtle
penup() 提起画笔后移动画笔不会绘制图形
pensize()
fillcolor()
pencolor()
color()
begin_fill()
end_fill()
filling()
clear()
reset()
screensize()
hideturtle()
showturtle()
isvisible()
write()
forward()
backward()
right() left()
goto()
home()
circle
2.2.1 例:绘制直方图
import turtle as t
ls = [69, 292, 33, 131, 61, 254]
X_len = 400
Y_len = 300
x0 = -200
y0 = -100
t.penup()
t.goto(x0, y0)
t.pendown()
t.fd(X_len)
t.fd(-X_len)
t.seth(90)
t.fd(Y_len)
t.pencolor('red')
t.pensize(5)
for i in range(len(ls)):
t.penup()
t.goto(x0 + (i+1)*50, -100)
t.seth(90)
t.pendown()
t.fd(ls[i])
t.done()
2.3 worldcloud
font_path文字路径
width生成图片宽度
height生成图片高度
mask()词云形状
min_font_size最小字体
max_font_size最大字体
word_step字号步进间距,默认为1
stopwords排除词
background_color图片背景色
max_words词云最大词数
|