03 2020 档案

摘要:import timefrom random import randomfrom math import sqrtfrom time import clockDARTS=10000hits=0.0scale=10clock()print(" 执行开始 ")for i in range(1,scale 阅读全文
posted @ 2020-03-31 16:16 书法大师 阅读(120) 评论(0) 推荐(0)
摘要:主要函数有: turtle.pendown():是指落笔,即海龟落在画板上,开始绘画。 turtle.penup():是指抬起,即海龟飞在画板上空,用于画笔的转移,不开始绘画。 turtle.pensize():是指画笔的粗度,可以调整画笔的粗细。 turtle.goto(x,y) :能让在任何位置 阅读全文
posted @ 2020-03-14 11:28 书法大师 阅读(792) 评论(0) 推荐(0)
摘要:#五角星import turtleturtle.fillcolor('red')turtle.begin_fill()turtle.fd(100)turtle.right(144)turtle.fd(100)turtle.right(144)turtle.fd(100)turtle.right(14 阅读全文
posted @ 2020-03-11 17:54 书法大师 阅读(142) 评论(0) 推荐(0)