python画星星代码(python画小星星)
请问如何用Python turtle画一个多角星?
一般是要靠算角度的
import turtle
import time
turtle.forward(100)
turtle.right(144)
time.sleep(1)
turtle.forward(100)
turtle.right(144)
time.sleep(1)
turtle.forward(100)
turtle.right(144)
turtle.forward(100)
time.sleep(1)
turtle.right(144)
turtle.forward(100)
time.sleep(3)
你可以写一个子函数通过给定的角的数量用公式计算出角度再代入上述代码的角度参数里就OK了
画爱心的python代码
我已经很努力了,但是要真的很好看爱心可能有点困难(除了贴图,但这毕竟不好,对吧)。
以下为Python代码:
from turtle import *
speed(0)#速度,觉得太快可以调到1(1慢10快0最快)
tracer(2)#显示速度,觉得太快可以调到1(同上)
hideturtle()#隐藏画笔
setup(500,500)#500×500的正方形画面
up()#提笔
goto(-150,50)#去目标点
down()#落笔
color("red","red")#画笔填充均红色
seth(90)#方向改为向上
begin_fill()#开始填充
circle(-75,180)#往右画半圆
circle(75,-180)#往右画半圆
step = 4.06635
seth(270)#向下
for i in range(90):#画椭圆
? forward(step)#走步长
? step = step - 0.025#逐渐缩小步长
? right(1)#右转1度
for i in range(90):
? step = step + 0.025#逐渐增加步长
? right(1)#右转1度
? forward(step)#走步长
end_fill()
以下为运行效果:
如何用python画一个五角星
首先要学会python,不然有程序也看不明白啊。
然后就是看你要画什么样的了。简单的5条线就ok。下面的程序就送你一颗星星。虽然没有天上的那么亮。:)
from?matplotlib?import?pyplot?as?plt
import?numpy?as?np
r?=?4.0
def?circle_p(r,d):
????return?[r*np.sin(d/180.0*np.pi),r*np.cos(d/180.0*np.pi)]
wjx_p?=?[circle_p(r,i*72)?for?i?in?range(7)]
for?i?in?range(5):
????x?=?[wjx_p[i][0],?wjx_p[i+2][0]]
????y?=?[wjx_p[i][1],?wjx_p[i+2][1]]
????plt.plot(x,y,'r')
plt.show()
想学python可以搜搜我的课程,用python做些事。
如何用Python写星星符号
for?i?in?range(1,10):
???if?(i=5):
???????x=i
???else:
???????x=10-i
???for?j?in?range(1,x+1):
???????print("*",end='')
???print("\n")
python 怎么画爱心?如何在Python里面画爱心啊?求解
Python可以使用turtle库来画爱心。 Turtle库是Python语言中一个很流行的绘制图像的函数库,想象一个小乌龟,在一个横轴为x、纵轴为y的坐标系原点,(0,0)位置开始,它根据一组函数指令的控制,在这个平面坐标系中移动,从而在它爬行的路径上绘制了图形。
实现代码如下:
from turtle import *
pensize(1)
pencolor('red')
fillcolor('pink')
speed(5)
up()
goto(-30, 100)
down()
begin_fill()
left(90)
circle(120,180)
circle(360,70)
left(38)
circle(360,70)
circle(120,180)
end_fill()
up()
goto(-100,-100)