首先一定是电脑安装python之上才能运行的,可以在电脑中找到代码储存位置,复制粘贴到查找位置,直接回车就会运行代码
安装pychem找到对应文件点击运行即可
我已经很努力了,但是要真的很好看爱心可能有点困难(除了贴图,但这毕竟不好,对吧)。
以下为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()
以下为运行效果:
亲,我好想回答过你的问题,matplotlib本身没有Venn图的函数,需要安装库matplotlib-venn,安装之前需要先确保具有numpy, scipy, matplotlib.这三个库。 安装方法: easy_install matplotlib-venn代码示例:set1 = set(['A', 'B', 'C', 'D'])set...
print("\n".join([''.join(['*'*((x-y)%3)
if((x*0.05)**2+(y*0.1)**2 -1)**3-(x*0.05)**2*(y*0.1)**3 = 0
else ' '
for x in range(-30,30)])
for y in range(15,-15,-1)]))
有问题,数字需要做调整
1 from turtle import * 2 def curvemove(): #这个函数是为了绘制爱心上方的曲线 3 for i in range(200): 4 right(1) 5 fd(1) 6 7 pensize(2) #调整画笔粗细 8 speed(10) #调节画笔速度 9 color(‘red‘,‘red‘) #画笔颜色及填充颜色10 begin_fill() #开始填充11 left(140)12 fd(111.65)13 curvemove() #调用函数14 left(120)15 curvemove() #调用函数16 fd(111.65)17 end_fill() #结束填充18 hideturtle() #隐藏画笔19 done()
是要表白么,嘿嘿,希望这个代码能帮到你哦~(参数不满意可以自己调)
import turtle
import math
wn = turtle.Screen()
wn.setworldcoordinates(-2, -2, 2, 2)
alex = turtle.Turtle()
alex.color("red")
alex.pensize(2)
alex.penup()
alex.speed(0)
walkStart = -1
walkEnd = 1
i = walkStart
j = walkEnd
while i = 0 and j = 0:
y1 = math.sqrt(1 - i * i) + (i * i) ** (1/3.0)
y2 = -math.sqrt(1 - i * i) + (i * i) ** (1/3.0)
y3 = math.sqrt(1 - j * j) + (j * j) ** (1/3.0)
y4 = -math.sqrt(1 - j * j) + (j * j) ** (1/3.0)
alex.setx(i)
alex.sety(y1)
alex.dot()
alex.sety(y2)
alex.dot()
alex.setx(j)
alex.sety(y3)
alex.dot()
alex.sety(y4)
alex.dot()
i += 0.01
j -= 0.01
wn.exitonclick()
我来说两句