lesson5画表情包

1.课堂笔记

2.知识点

t.setheading(0)
t.circle(200) #画一个半径200的圆
t.circle(a,b) #以a为半径画b段弧
#b为正,顺着当前方向画;b为负,后退着画
#a为正,圆心在左手边;a为负,圆心在右手边

3.课后作业

1.作业一(笑脸,哭脸)

#---------导入库--------
import turtle as t#----------定义子函数----------
#画脸
def face(x,y):t.setheading(0)t.penup()t.goto(x,y)t.pendown()t.color("orange","yellow")t.pensize(2)t.begin_fill()t.circle(200)t.end_fill()#画眼睛
def eye(x,y):t.pensize(3)t.setheading(0)t.penup()t.goto(x,y)t.pendown()t.color("brown","white")t.begin_fill()t.circle(40)t.end_fill()t.color("black","black")t.begin_fill()t.circle(25)t.end_fill()#画嘴巴
def mouth(x,y,z):if z == 0:  #正t.pensize(3)t.setheading(-60)t.penup()t.goto(x,y)t.pendown()t.color("black")t.circle(100,120)if z == 1:   #负t.pensize(3)t.setheading(-120)t.penup()t.goto(x,y)t.pendown()t.color("black")t.circle(100,-120)#画整张脸
def all_face(x,y,z):face(x,y)eye(x-80,y+250)eye(x+80,y+250)mouth(x-80,y+110,z)#------------主函数------------
t.hideturtle()
t.speed(0)
all_face(-200,0,0)
all_face(-200,-400,1)
all_face(200,0,1)
all_face(200,-400,0)'''
face(200,-200)
face(-200,-200)
eye(120,50)
eye(280,50)
eye(-120,50)
eye(-280,50)
mouth(120,-90,1)
mouth(-285,-80,0)
'''

2.作业二(四个表情包)

#---------导入库--------
import turtle as t#----------定义子函数----------
#画脸
def face(x,y):t.setheading(0)t.penup()t.goto(x,y)t.pendown()t.color("orange","yellow")t.pensize(2)t.begin_fill()t.circle(200)t.end_fill()#画眼睛-------------------------
def eye(x,y):t.pensize(3)t.setheading(0)t.penup()t.goto(x,y)t.pendown()t.color("brown","white")t.begin_fill()t.circle(40)t.end_fill()t.color("black","black")t.begin_fill()t.circle(25)t.end_fill()
#画嘴巴
def mouth(x,y,z):if z == 0:  #正t.pensize(3)t.setheading(-60)t.penup()t.goto(x,y)t.pendown()t.color("black")t.circle(100,120)if z == 1:   #负t.pensize(3)t.setheading(-120)t.penup()t.goto(x,y)t.pendown()t.color("black")t.circle(100,-120)#画第二种眼睛--------------------
def eye_2(x,y):t.pensize(3)t.setheading(0)t.penup()t.goto(x,y)t.pendown()t.color("brown","white")t.begin_fill()for i in range(2):t.forward(100)t.circle(7,90)t.forward(50)t.circle(7,90)t.end_fill()t.penup()t.goto(x+45,y+10)t.pendown()t.color("black","black")t.begin_fill()t.circle(20)t.end_fill()
#画第二种嘴巴
def mouth_2(x,y):t.setheading(-30)t.pensize(3)t.penup()t.goto(x,y)t.pendown()t.color("black")t.circle(100,60)#画第三种眼睛------------------------
def eye_3(x,y):t.pensize(3)t.setheading(0)t.penup()t.goto(x,y)t.pendown()t.color("brown","white")t.begin_fill()for i in range(2):t.forward(110)t.circle(7,90)t.forward(30)t.circle(7,90)t.end_fill()t.penup()t.goto(x+35,y+45)t.pendown()t.setheading(-90)t.color("black","black")t.begin_fill()t.circle(20,180)t.end_fill()
#画第三种嘴巴
def mouth_3(x,y):t.pensize(3)t.setheading(0)t.penup()t.goto(x,y)t.pendown()t.color("black")t.forward(100)#---------------------------------------
#画整张脸 笑脸,哭脸
def all_face(x,y,z):face(x,y)eye(x-80,y+250)eye(x+80,y+250)mouth(x-80,y+110,z)#画第二种表情包
def all_face_2(x,y):face(x,y)eye_2(x-140,y+250)eye_2(x+50,y+250)mouth_2(x-45,y+80)#画第三种表情包
def all_face_3(x,y):face(x,y)eye_3(x-140,y+250)eye_3(x+50,y+250)mouth_3(x-45,y+80)#------------主函数------------
t.hideturtle()
t.speed(0)all_face_3(-200,0,)
all_face(-200,-400,0)
all_face(200,0,1)
all_face_2(200,-400,)

3.作业三(小猪佩奇)

import turtle as tt.pensize(4)
t.hideturtle()
t.colormode(255)
t.color((255,155,192),"pink")
t.setup(840,500)
t.speed(0)#鼻子
t.pu()
t.goto(-100,100)
t.pd()
t.seth(-30)
t.begin_fill()
a=0.4
for i in range(120):if 0<=i<30 or 60<=i<90:a=a+0.08t.lt(3) #向左转3度t.fd(a) #向前走a的步长else:a=a-0.08t.lt(3)t.fd(a)
t.end_fill()t.pu()
t.seth(90)
t.fd(25)
t.seth(0)
t.fd(10)
t.pd()
t.pencolor(255,155,192)
t.seth(10)
t.begin_fill()
t.circle(5)
t.color(160,82,45)
t.end_fill()t.pu()
t.seth(0)
t.fd(20)
t.pd()
t.pencolor(255,155,192)
t.seth(10)
t.begin_fill()
t.circle(5)
t.color(160,82,45)
t.end_fill()#头
t.color((255,155,192),"pink")
t.pu()
t.seth(90)
t.fd(41)
t.seth(0)
t.fd(0)
t.pd()
t.begin_fill()
t.seth(180)
t.circle(300,-30)
t.circle(100,-60)
t.circle(80,-100)
t.circle(150,-20)
t.circle(60,-95)
t.seth(161)
t.circle(-300,15)
t.pu()
t.goto(-100,100)
t.pd()
t.seth(-30)
a=0.4
for i in range(60):if 0<=i<30 or 60<=i<90:a=a+0.08t.lt(3) #向左转3度t.fd(a) #向前走a的步长else:a=a-0.08t.lt(3)t.fd(a)
t.end_fill()#耳朵
t.color((255,155,192),"pink")
t.pu()
t.seth(90)
t.fd(-7)
t.seth(0)
t.fd(70)
t.pd()
t.begin_fill()
t.seth(100)
t.circle(-50,50)
t.circle(-10,120)
t.circle(-50,54)
t.end_fill()t.pu()
t.seth(90)
t.fd(-12)
t.seth(0)
t.fd(30)
t.pd()
t.begin_fill()
t.seth(100)
t.circle(-50,50)
t.circle(-10,120)
t.circle(-50,56)
t.end_fill()#眼睛
t.color((255,155,192),"white")
t.pu()
t.seth(90)
t.fd(-20)
t.seth(0)
t.fd(-95)
t.pd()
t.begin_fill()
t.circle(15)
t.end_fill()t.color("black")
t.pu()
t.seth(90)
t.fd(12)
t.seth(0)
t.fd(-3)
t.pd()
t.begin_fill()
t.circle(3)
t.end_fill()t.color((255,155,192),"white")
t.pu()
t.seth(90)
t.fd(-25)
t.seth(0)
t.fd(40)
t.pd()
t.begin_fill()
t.circle(15)
t.end_fill()t.color("black")
t.pu()
t.seth(90)
t.fd(12)
t.seth(0)
t.fd(-3)
t.pd()
t.begin_fill()
t.circle(3)
t.end_fill()#腮
t.color((255,155,192))
t.pu()
t.seth(90)
t.fd(-95)
t.seth(0)
t.fd(65)
t.pd()
t.begin_fill()
t.circle(30)
t.end_fill()#嘴
t.color(239,69,19)
t.pu()
t.seth(90)
t.fd(15)
t.seth(0)
t.fd(-100)
t.pd()
t.seth(-80)
t.circle(30,40)
t.circle(40,80)#身体
t.color("red",(255,99,71))
t.pu()
t.seth(90)
t.fd(-20)
t.seth(0)
t.fd(-78)
t.pd()
t.begin_fill()
t.seth(-130)
t.circle(100,10)
t.circle(300,30)
t.seth(0)
t.fd(230)
t.seth(90)
t.circle(300,30)
t.circle(100,3)
t.color((255,155,192),(255,100,100))
t.seth(-135)
t.circle(-80,63)
t.circle(-150,24)
t.end_fill()#手
t.color((255,155,192))
t.pu()
t.seth(90)
t.fd(-40)
t.seth(0)
t.fd(-27)
t.pd()
t.seth(-160)
t.circle(300,15)
t.pu()
t.seth(90)
t.fd(15)
t.seth(0)
t.fd(0)
t.pd()
t.seth(-10)
t.circle(-20,90)t.pu()
t.seth(90)
t.fd(30)
t.seth(0)
t.fd(237)
t.pd()
t.seth(-20)
t.circle(-300,15)
t.pu()
t.seth(90)
t.fd(20)
t.seth(0)
t.fd(0)
t.pd()
t.seth(-170)
t.circle(20,90)#脚
t.pensize(10)
t.color((240,128,128))
t.pu()
t.seth(90)
t.fd(-75)
t.seth(0)
t.fd(-180)
t.pd()
t.seth(-90)
t.fd(40)
t.seth(-180)
t.color("black")
t.pensize(15)
t.fd(20)t.pensize(10)
t.color((240,128,128))
t.pu()
t.seth(90)
t.fd(40)
t.seth(0)
t.fd(90)
t.pd()
t.seth(-90)
t.fd(40)
t.seth(-180)
t.color("black")
t.pensize(15)
t.fd(20)#尾巴
t.pensize(4)
t.color((255,155,192))
t.pu()
t.seth(90)
t.fd(70)
t.seth(0)
t.fd(95)
t.pd()
t.seth(0)
t.circle(70,20)
t.circle(10,330)
t.circle(70,30)

4.作业四(美国队长)

#----------导入库-------------
import turtle as t#----------定义子函数---------
#盾牌
def a(x,y):t.pensize(30)t.setheading(90)t.penup()t.goto(x,y)t.pendown()t.color("red")t.circle(200)t.penup()t.goto(x-55,y)t.pendown()t.begin_fill()t.color("red","blue")t.circle(140)t.end_fill()#星星
def star(x,y):t.setheading(0)t.penup()t.goto(x,y)t.pendown()t.color("white","white")t.begin_fill() for i in range(5):t.forward(208)t.right(144)t.end_fill()
#盾牌面
def mian(x,y):a(x,y)star(x-300,y+32)#-------------------------------
def hand(x,y):t.pensize(4)            # 先画手腕部分t.right(90)t.penup()t.goto(x+400,y)t.pendown()t.color("gray","gray")t.begin_fill()t.fd(20)t.right(90)t.fd(78)t.right(90)t.fd(20)t.right(90)t.fd(78)t.end_fill()t.color("black","black")    # 然后画手和手指t.right(90)t.penup()t.fd(24)t.pendown()t.left(25)t.circle(70,50)t.circle(-10,180)t.left(5)t.circle(-120,20)t.seth(0)t.fd(50)t.circle(-5,100)t.fd(74)t.seth(180)t.fd(82)t.right(90)t.fd(80)t.hideturtle()
#-----------主函数--------------
t.hideturtle()
t.speed(0)
mian(-100,0)
a(400,0)
hand(-250,25)

5.作业五

import turtle as t#画脸
def face(x,y):t.pensize(2)t.penup()t.goto(x,y)t.pendown()t.color("yellow","yellow")t.begin_fill()t.circle(200)t.end_fill()#画嘴巴-------------------
def mouth(x,y):t.pensize(15)t.seth(-90)t.penup()t.goto(x,y)t.pendown()t.color("black")t.circle(170,180)
#画眼睛
def eye(x,y):t.pensize(55)t.seth(130)t.penup()t.goto(x,y)t.pendown()t.color("white")t.circle(70,100)t.pensize(20)t.penup()t.goto(x-110,y)t.pendown()t.color("black")t.circle(10)
#第一个表情包
def all_face(x,y):face(x,y)mouth(x-240,y+190)eye(x-90,y+260)eye(x+75,y+260)#画第二个嘴巴-----------------------
def mouth_2(x,y):t.pensize(2)t.seth(-90)t.penup()t.goto(x,y)t.pendown()t.begin_fill()t.color("black","white")t.circle(100,180)t.left(90)t.forward(200)t.end_fill()t.seth(-90)t.penup()t.goto(x+30,y)t.pendown()t.begin_fill()t.color("red","red")t.circle(70,180)t.end_fill()
#整个
def all_face_2(x,y):face(x,y)mouth_2(x+55,y-200)eye(x+120,y-80)eye(x+295,y-80)#----------点赞-------------
t.pensize(4)                # 先画手腕部分
t.penup()
t.goto(400,0)
t.pendown()
t.color("gray","gray")
t.begin_fill()
t.fd(20)
t.right(90)
t.fd(78)
t.right(90)
t.fd(20)
t.right(90)
t.fd(78)
t.end_fill()t.color("black","black")    # 然后画手和手指
t.right(90)
t.penup()
t.fd(24)
t.pendown()
t.left(25)
t.circle(70,50)
t.circle(-10,180)
t.left(5)
t.circle(-120,20)
t.seth(0)
t.fd(50)
t.circle(-5,100)
t.fd(74)
t.seth(180)
t.fd(82)
t.right(90)
t.fd(80)
t.hideturtle()t.penup()            # 最后画手臂并填色
t.pensize(2)
t.goto(200,-2)
t.showturtle()
t.pendown()
t.begin_fill()
t.seth(0)
t.fd(195)
t.right(90)
t.fd(74)
t.right(90)
t.fd(195)
t.right(90)
t.fd(74)
t.end_fill()#---------小猪佩奇----------t.pensize(4)
t.hideturtle()
t.colormode(255)
t.color((255,155,192),"pink")
t.setup(840,500)
t.speed(0)#鼻子
t.pu()
t.goto(-100,100)
t.pd()
t.seth(-30)
t.begin_fill()
a=0.4
for i in range(120):if 0<=i<30 or 60<=i<90:a=a+0.08t.lt(3) #向左转3度t.fd(a) #向前走a的步长else:a=a-0.08t.lt(3)t.fd(a)
t.end_fill()t.pu()
t.seth(90)
t.fd(25)
t.seth(0)
t.fd(10)
t.pd()
t.pencolor(255,155,192)
t.speed(0)
t.seth(10)
t.begin_fill()
t.circle(5)
t.color(160,82,45)
t.end_fill()t.pu()
t.seth(0)
t.fd(20)
t.pd()
t.speed(0)
t.pencolor(255,155,192)
t.seth(10)
t.begin_fill()
t.circle(5)
t.color(160,82,45)
t.end_fill()#头
t.color((255,155,192),"pink")
t.pu()
t.seth(90)
t.fd(41)
t.seth(0)
t.fd(0)
t.pd()
t.begin_fill()
t.seth(180)
t.circle(300,-30)
t.circle(100,-60)
t.circle(80,-100)
t.circle(150,-20)
t.circle(60,-95)
t.seth(161)
t.circle(-300,15)
t.pu()
t.goto(-100,100)
t.pd()
t.seth(-30)
a=0.4
for i in range(60):if 0<=i<30 or 60<=i<90:a=a+0.08t.lt(3) #向左转3度t.fd(a) #向前走a的步长else:a=a-0.08t.lt(3)t.fd(a)
t.end_fill()#耳朵
t.color((255,155,192),"pink")
t.pu()
t.seth(90)
t.fd(-7)
t.seth(0)
t.fd(70)
t.pd()
t.begin_fill()
t.seth(100)
t.circle(-50,50)
t.circle(-10,120)
t.circle(-50,54)
t.end_fill()t.pu()
t.seth(90)
t.fd(-12)
t.seth(0)
t.fd(30)
t.pd()
t.begin_fill()
t.seth(100)
t.circle(-50,50)
t.circle(-10,120)
t.circle(-50,56)
t.end_fill()#眼睛
t.color((255,155,192),"white")
t.pu()
t.seth(90)
t.fd(-20)
t.seth(0)
t.fd(-95)
t.pd()
t.begin_fill()
t.circle(15)
t.end_fill()t.color("black")
t.pu()
t.seth(90)
t.fd(12)
t.seth(0)
t.fd(-3)
t.pd()
t.begin_fill()
t.circle(3)
t.end_fill()t.color((255,155,192),"white")
t.pu()
t.seth(90)
t.fd(-25)
t.seth(0)
t.fd(40)
t.pd()
t.begin_fill()
t.circle(15)
t.end_fill()t.color("black")
t.pu()
t.seth(90)
t.fd(12)
t.seth(0)
t.fd(-3)
t.pd()
t.begin_fill()
t.circle(3)
t.end_fill()#腮
t.color((255,155,192))
t.pu()
t.seth(90)
t.fd(-95)
t.seth(0)
t.fd(65)
t.pd()
t.begin_fill()
t.circle(30)
t.end_fill()#嘴
t.color(239,69,19)
t.pu()
t.seth(90)
t.fd(15)
t.seth(0)
t.fd(-100)
t.pd()
t.seth(-80)
t.circle(30,40)
t.circle(40,80)#身体
t.color("red",(255,99,71))
t.pu()
t.seth(90)
t.fd(-20)
t.seth(0)
t.fd(-78)
t.pd()
t.begin_fill()
t.seth(-130)
t.circle(100,10)
t.circle(300,30)
t.seth(0)
t.fd(230)
t.seth(90)
t.circle(300,30)
t.circle(100,3)
t.color((255,155,192),(255,100,100))
t.seth(-135)
t.circle(-80,63)
t.circle(-150,24)
t.end_fill()#手
t.color((255,155,192))
t.pu()
t.seth(90)
t.fd(-40)
t.seth(0)
t.fd(-27)
t.pd()
t.seth(-160)
t.circle(300,15)
t.pu()
t.seth(90)
t.fd(15)
t.seth(0)
t.fd(0)
t.pd()
t.seth(-10)
t.circle(-20,90)t.pu()
t.seth(90)
t.fd(30)
t.seth(0)
t.fd(237)
t.pd()
t.seth(-20)
t.circle(-300,15)
t.pu()
t.seth(90)
t.fd(20)
t.seth(0)
t.fd(0)
t.pd()
t.seth(-170)
t.circle(20,90)#脚
t.pensize(10)
t.color((240,128,128))
t.pu()
t.seth(90)
t.fd(-75)
t.seth(0)
t.fd(-180)
t.pd()
t.seth(-90)
t.fd(40)
t.seth(-180)
t.color("black")
t.pensize(15)
t.fd(20)t.pensize(10)
t.color((240,128,128))
t.pu()
t.seth(90)
t.fd(40)
t.seth(0)
t.fd(90)
t.pd()
t.seth(-90)
t.fd(40)
t.seth(-180)
t.color("black")
t.pensize(15)
t.fd(20)#尾巴
t.pensize(4)
t.color((255,155,192))
t.pu()
t.seth(90)
t.fd(70)
t.seth(0)
t.fd(95)
t.pd()
t.seth(0)
t.circle(70,20)
t.circle(10,330)
t.circle(70,30)#--------------主程序-----------
t.speed(0)
t.hideturtle()all_face(-250,100)
all_face_2(-600,0)t.end_fill()#手
t.color((255,155,192))
t.pu()
t.seth(90)
t.fd(-40)
t.seth(0)
t.fd(-27)
t.pd()
t.seth(-160)
t.circle(300,15)
t.pu()
t.seth(90)
t.fd(15)
t.seth(0)
t.fd(0)
t.pd()
t.seth(-10)
t.circle(-20,90)t.pu()
t.seth(90)
t.fd(30)
t.seth(0)
t.fd(237)
t.pd()
t.seth(-20)
t.circle(-300,15)
t.pu()
t.seth(90)
t.fd(20)
t.seth(0)
t.fd(0)
t.pd()
t.seth(-170)
t.circle(20,90)#脚
t.pensize(10)
t.color((240,128,128))
t.pu()
t.seth(90)
t.fd(-75)
t.seth(0)
t.fd(-180)
t.pd()
t.seth(-90)
t.fd(40)
t.seth(-180)
t.color("black")
t.pensize(15)
t.fd(20)t.pensize(10)
t.color((240,128,128))
t.pu()
t.seth(90)
t.fd(40)
t.seth(0)
t.fd(90)
t.pd()
t.seth(-90)
t.fd(40)
t.seth(-180)
t.color("black")
t.pensize(15)
t.fd(20)#尾巴
t.pensize(4)
t.color((255,155,192))
t.pu()
t.seth(90)
t.fd(70)
t.seth(0)
t.fd(95)
t.pd()
t.seth(0)
t.circle(70,20)
t.circle(10,330)
t.circle(70,30)#--------------主程序-----------
t.speed(0)
t.hideturtle()all_face(-250,100)
all_face_2(-600,0)

lesson5画表情包相关推荐

  1. 使用python的turtle库画表情包

    使用python的turtle库画表情包 话不多说,先上效果图,然后是代码 代码如下: import turtleturtle.penup() turtle.goto(-80,20) turtle.c ...

  2. python turtle画表情包

    之前在GitHub上有看到有用turtle画玫瑰的,csdn上也有很多类似的代码,挑了一个画表情包代码留存.(因为是我平常最喜欢用的表情包) 使用海龟绘图可以编写重复执行简单动作的程序画出精细复杂的形 ...

  3. python turtle 绘图表情包_Python|turtle|画表情包

    今天依然来熟悉一下python中的turtle模块,在这之前我们来看一条段子,也是我无意间get到的,胆小者勿看,因为太wu了.段子是:嫦娥的兔子生病了,于是嫦娥把兔子抱到月老那里.月老看了看兔子说: ...

  4. 用python画微笑脸表情_python画表情包

    python绘表情包 表情包有部分不完美,请读者自行修改! from turtle import* speed(1) pensize(3) setup(400,400) pu() goto(-100, ...

  5. php代码画表情包,canvas绘制表情包的示例代码

    本文介绍了canvas绘制表情包的示例代码,分享给大家,具体如下: 绘制卡通笑脸 var canvas = document.getElementById('canvas'); var context ...

  6. python turtle画表情包--牛bi

    翻到了以前用python写的一个画牛逼的表情包,觉得还挺有趣的,自己也一直在用,今天发出来分享给大家,大家还可以在这个基础上自己魔改一下.首先看看效果: 下面是代码: from turtle impo ...

  7. 见过用turtle画表情包的吗!

    我竟然用python画了个表情包! 点击此处查看视频 欢迎大家投一票给我们  #手动滑稽# 以下是源代码 from turtle import * setup(900,1000,200,200) pe ...

  8. python turtle画表情包--不可以色色

    闲来无事,翻到以前的一个代码,将它魔改一下,不可以色色,先看看运行结果图: 代码如下,小伙伴们可以根据自己的需要进行更改: import turtle as tif __name__ == '__ma ...

  9. 大学各专业计算机专属表情包,萌翻!中国计量大学女生给7个高校做了专属表情包...

    前两天,"给好朋友P图"上了热搜,好多人会拿着好友的照片修图.这不,中国计量大学的一名学生非常有爱,她不但给自己学校做了表情包,还给周边相邻的6所高校都做了表情包. 这套表情包简直 ...

最新文章

  1. 理解MySQL——并行数据库与分区(Partition)
  2. Spring transaction事务之roll back回滚: rollback-for
  3. 网络爬虫基本原理(一)
  4. python argparse理解与实例
  5. C# 与 Unity 同名函数
  6. Discuz!6.1.0 用户密码如何加密的?
  7. 爬虫简单入门:第一个简单爬虫
  8. C++求二叉树的最大高度差
  9. 拼图项目的动机和目标
  10. Struts2 - Action 基础用法
  11. 写在2009年的开始
  12. 6.8 2.23-2.26
  13. C++ 实数和二进制操作入门
  14. 陶哲轩实分析 4.1 节习题试解
  15. 基础资料表:行政区划、车型库、行业类别 可下载
  16. mysql median_MySQL中查询中位数?
  17. android 图片3d,Android实现3D图片浏览效果示例
  18. 数值法求六轴机械臂逆运动学解
  19. 有一架天平12个小球,其中有11个重量相同,1个与另外11个不同(不清楚这个球是轻还是重),要求最多称3次,就可以将其中重量特殊的小球找出来。
  20. CMDB开发之用户登录登出的cookie校验

热门文章

  1. 有关JSON和介绍和使用
  2. Google Material Design 元件库
  3. SpringBoot实现12306自动抢票系统
  4. IOTA--帮你构建安全的边缘计算网络
  5. matlab在有限差分法中的应用,MATLAB在有限差分法数值计算中的应用
  6. 用chrome浏览器将pdf paper整篇翻译成中文
  7. Python爬虫进阶必备 | X天下与XX二手房密码加密分析
  8. Word文档中如何打外国人姓名间隔的那一个小点
  9. 【QScrollBar | QSlider | QDial | QProgressBar | QLCDNumber】
  10. 利用ADS快速设计低噪放