import 的使用
import 库名
库名.函数名(函数参数)
#完成对库的引用
from 库名 import 函数名
函数名(函数参数)
#使用函数的时候不需要加库名 直接用 函数名(函数参数)
#可能会出现函数名字的冲突
from 库名 import*
▲
import 库名 as 库别名
库别名.函数名(函数参数)
#给调用的外部库关联一个更短更适合自己的名字
turtle画笔控制函数
画笔操作后一直有效,一般成对出现
turtle.penup() 别名 turtle.pu() turtle.up()
#抬起画笔,海龟在飞行,相当于没有在画布上画画
turtle.pendown() 别名 turtle.pd()
#画笔落下,海龟在爬行,相当于在画布上画画
turtle.pensize(width) 别名 turtle.width(width)
#画笔宽度,海龟的腰围
turtle.pencolor(color) #color为颜色字符串或r,g,b值
#画笔颜色
turtle.pencolor("purple") #颜色字符串,参数必须是字符串而且是小数
turtle.pencolor(0.63,0.13,0.94) #RGB的小数值
turtle.pencolor((0.63,0.13,0.94)) #RGB的元组值
turtle运动控制函数
控制海龟行进:走直线&走曲线
turtle.forward(d) 别名 turtle.fd(d)
#向前行进&#