基础知识
1)Python标准库中的GUI界面 -- 》 turtle
------------import turtle as t (t是别名)
------------t.pensize(10) (设置画笔大小为10px)
------------t.color("purple") (设置画笔为紫色)
------------t.penup() (抬笔)
------------t.goto(-260,0) (水平左移)
------------t.pendown() (落笔)
------------t.left(90) (向左旋转90度)
------------t.forward(80) (向前画80长的线)
------------t.right(145) (向右旋转145度)
------------t.done() (让界面一直显示)
2)python常用数据类型:列表、元祖、字典、序列
☞ 列表
(1) 与c语言中的数组很相似, 只不过可以存储不同类型的数据。
(2) 优点:灵活 ,缺点: 效率低
(3) 定义方式 []
(4) 常见操作
hero_name = ['鲁班七号', '安琪拉', '李白', '刘备']
① 列表的访问 ---> 列表名[索引]
eg:print(hero_name[2])
② 列表的添加 ---> append
eg:hero_name.append('后羿')
③ 列表的修改 ---> 列表名[索引] = 值
eg:hero_name[1] = 1000
④ 列表的删除 ---> del 列表名[索引]
eg:del hero_name[1]
☞ 字符串
(1) 定义形式 '' ""
(2) 切片:对序列截取一部分的操作,适用于列表
(3) [起始位置:终止位置:步长] 左闭右开
(4) 全切片的时候可以省略初始和终止位置
(5) 常用方法
name =' abcdefg '
① 去两端空格 ---> 字符串名.strip()
eg:name = name.strip()
② 查看序列内元素的个数 ---> 字符串名.len()
eg:int leng = len(name)
③ 替换序列内指定元素 ---> 字符串名.replace('指定字符','')
④ 列表变成字符串的方法 ---> 字符串名.join()
eg:a = ''.join(li_list)
☞ 元祖
(1) tuple 元祖和列表很像只不过元祖不可以被修改
(2) 定义 ()
(3) 常见操作
aa = ('huangmeilin','hml','123456',1000)
① 元祖访问 ---> 元祖名[索引号]
eg:aa[0]
② 元祖修改 ---> 元祖名[索引号] = 值 (×)
eg:a[3] = 2000 会报错
截图:
(4) 关于元祖需要注意
--------b = ('list') #是不是元祖
--------c = (1000) #是不是元祖
--------print(type(b))
--------print(type(c))
☞ 字典
(1) key-value数据结构
(2) 定义形式{}
(3) 常见操作
info = {'name':'黄美琳','age':21,'address':'重庆'}
① 字典的访问 ---> 字典名[键]
eg:info['name']
② 字典的修改 ---> 字典名[键]=值
eg: info['address'] = '北京'
③ 字典的增加 ---> 字典名[键]=值
eg:info['sex'] = '女'
④ 获取字典中所有的键
eg: print(info.keys) #返回值是一个列表
⑤ 获取字典中所有的值
eg: print(info.values) #返回值是一个列表
⑥ 获取字典中所有的key-values
eg:print(info.items())
⑦ 遍历字典
----------for x in info.items(): print(x) #第一种方法
----------for k,v in info.items(): print(k,v) #第二种方法
☞ 集合
(1) 无序,不重复
(2) set1 = {'hml','Huangmeilin'} #没有键值
(3) 遍历
----------for x in set1: print(x)
3)定义函数的形式 ---> def 函数名(参数): 函数体
4)python中使用open内置函数进行文件的读取
(1) 第一种方式
---------f = open(file='地址',mode='r',encoding='utf-8')
---------print(f.read())
---------f.close()
(2) 第二种方式 没有关闭数据流
---------f = open(file='地址',mode='r',encoding='utf-8').read()
---------print(f)
(3) 第三种方式 with as 上下文管理器 不用手动关闭流
---------with open('地址','r',encoding='utf-8') as f:
---------------------------data = f.read()
5)python中使用open内置函数进行文件的写入
---------txt = 'I like python!'
---------with open('地址','w',encoding='utf-8') as f:
f.write(txt) #写到网页中用 f.write(text)
6)中文分词
(1) 安装jieba分词库
步骤如下:(按照下面的步骤一步一步即可)
直接搜索jieba,点击install就可以
成功界面如下:
7)导入jieba分词
三种分词模式
seg = "我来到北京清华大学"
(1)精确模式
eg:seg_list = jieba.lcut(seg)
(2)全模式 找出所有可能的分词结果 冗余性大
eg:seg_list1 = jieba.lcut(seg,cut_all=True)
(3)搜索引擎模式 先执行精确模式,在对其中的长词进行处理
eg:seg_list2 = jieba.lcut_for_search(seg)
8)
(9)
(10)
Python例子
一、通过GUI界面,绘制 NEUSOFT,署名HML。
❋源代码
import turtle as t
t.pensize(10) #设置画笔的大小 10px
t.color("purple") #设置画笔的颜色 黄色
# 绘制 N
t.penup() #抬笔
t.goto(-260,0) # 水平左移
t.pendown() #落笔
t.left(90) #向左旋转90度
t.forward(80) #当前位置向前画80长的线
t.right(145) #向右旋转145度
t.fd(100) #当前位置向前画100长的线
t.lt(145) #向左旋转145度
t.fd(80) #当前位置向前画80长的线
# 绘制 E
t.penup() #抬笔
t.goto(-180,0) # 水平左移
t.pendown() #落笔
t.forward(80) #当前位置向前画80长的线
t.right(90)
t.forward(50)
t.right(90)
t.penup() #抬笔
t.forward(40)
t.pendown()
t.right(90)
t.forward(40)
t.left(90)
t.penup() #抬笔
t.forward(40)
t.pendown()
t.left(90)
t.forward(40)
# 绘制 U
t.penup() #抬笔
t.goto(-100,0) # 水平左移
t.pendown() #落笔
t.left(90)
t.penup()
t.forward(80)
t.pendown()
t.left(180)
t.forward(60)
t.circle(24, 180)
t.forward(60)
# 绘制 S
t.penup() #抬笔
t.goto(20,60) # 水平左移
t.pendown() #落笔
t.circle(23,268)
t.circle(-23,268)
# 绘制 O
t.penup() #抬笔
t.goto(93,30) # 水平左移
t.pendown() #落笔
t.circle(28)
# 绘制 F
t.penup() #抬笔
t.goto(113,0) # 水平左移
t.pendown() #落笔
t.forward(80)
t.right(90)
t.forward(40)
t.right(90)
t.penup()
t.forward(40)
t.pendown()
t.right(90)
t.forward(40)
# 绘制 T
t.penup() #抬笔
t.goto(173,80) # 水平左移
t.pendown() #落笔
t.right(180)
t.forward(50)
t.right(180)
t.penup()
t.forward(25)
t.left(90)
t.pendown()
t.forward(80)
#绘制H
t.color("yellow") #设置画笔的颜色 黄色
t.pensize(6)
t.penup() #抬笔
t.goto(20,-100) # 水平左移 # 水平左移
t.pendown() #落笔
t.forward(60)
t.right(180)
t.penup()
t.forward(30)
t.pendown()
t.right(90)
t.forward(28)
t.left(90)
t.penup()
t.forward(30)
t.pendown()
t.right(180)
t.forward(60)
#绘制M
t.penup() #抬笔
t.goto(80,-160) # 水平左移 # 水平左移
t.pendown() #落笔
t.right(180)
t.forward(60)
t.right(155)
t.forward(50)
t.left(130)
t.forward(50)
t.right(155)
t.forward(60)
#绘制L
t.penup() #抬笔
t.goto(150,-100) # 水平左移 # 水平左移
t.pendown() #落笔
t.forward(60)
t.left(90)
t.forward(30)
t.done() # 让gui界面一直显示, 所有执行的代码要写在此函数之前
❋结果截图
二、创建[1,2,3....10]这样的一个数字列表。
li = [] #1、创建空列表
for i in range(1,11): #2、使用for循环,在循环中添加元素值
li.append(i)
print(li)
三、列表排序(列表里面的元素是字典),根据年龄排序。
stu_info = [
{"name":'zhangsan', "age":18}, #字典
{"name":'lisi', "age":30},
{"name":'wangwu', "age":99},
{"name":'tiaqi', "age":3},
]
print('排序前', stu_info)
def sort_by_age(x):
return x['age']
stu_info.sort(key=sort_by_age, reverse=True)
print('排序后', stu_info)
四、列表排序(列表里面的元素是元祖)根据元祖第二个元素进行正序排序。
name_info_list=[
('黄美琳',50000),
('张三',45000),
('李四',32000),
('hml',65832),
('赵四',59320),
]
print('排序前', name_info_list)
def sort_by_gongzi(x):
return x[1]
name_info_list.sort(key=sort_by_gongzi)
print('排序后', name_info_list)
五、中文分词
text = '小明硕士毕业于中国科学院计算机所,后在日本京都大学深造'
seg_list3 = jieba.lcut_for_search(text)
print(seg_list3)
seg_list4 = jieba.lcut_for_search(text)
print(seg_list4)
六、三国演义小说分词(读取三国演义小说)
import jieba
with open('./novel/threekingdom.txt','r',encoding='utf-8') as f:
words = f.read()
print(len(words)) #字数
words_list = jieba.lcut(words)
print("123456")
print(len(words_list)) #分词后的词语数
print(words_list)
词云展示
❋ 需要按照导入jieba一样,先导入wordcloud,一样的方式来导入。
❋ 代码
from wordcloud import WordCloud
import jieba
import imageio
text = 'He was an old man who fished alone in a skiff in the Gulf Stream and he had gone eighty-four days now without taking a fish. In the first forty days a boy had been with him. But after forty days without a fish the boy’s parents had told him that the old man was now definitely and finally salao, which is the worst form of unlucky, and the boy had gone at their orders in another boat which caught three good fish the first week. It made the boy sad to see the old man come in each day with his skiff empty and he always went down to help him carry either the coiled lines or the gaff and harpoon and the sail that was furled around the mast. The sail was patched with flour sacks and, furled, it looked like the flag of permanent defeat.'
wc = WordCloud().generate(text)
wc.to_file('./老人与海.png')
mask = imageio.imread('./china.jpg')
with open('./novel/threekingdom.txt','r',encoding='utf-8') as f:
words = f.read()
words_list = jieba.lcut(words)
print(words_list)
novel_words =" ".join(words_list)
print(novel_words)
#在WordCloud()类里面设置参数
wc = WordCloud(
font_path = 'msyh.ttc',
background_color='white',
width = 800,
height = 600,
mask = mask
).generate(novel_words)
wc.to_file("三国演义.png")
❋ 项目截图