python爱心代码怎么运行,如何用python代码打出心形函数

1,如何用python代码打出心形函数空格与*配合就行了 。。。你说呢...
2,这串代码是一个心形可是我运行不出来求大神帮忙找原因你好,你可以试试用.cpp,我这里用devc++编译时可以正确输出心形的第一行:19个空格+1个花+19个空格第二行:15空格+1花+6空格+1花+15空格第三行:11空格+1花+14空格+1花+11空格第四行: 7空格+1花+22空格+1花+7空格第五行: 3空格+1花+12空格+love+12空格+1花+3空格第六行: 3空格+1花+14空格+1花+14空格+1花+3空格 第七行:6空格+1花+4空格+1花+10空格+1花+5空格+1花
3,求问怎样用pythonpython turtle画心python turtle画4个同心圆方法import turtle#draw first circleturtle.penup()turtle.goto(0,-200)turtle.pendown()turtle.circle(200)#draw second circleturtle.penup()turtle.goto(0,-150)turtle.pendown()turtle.circle(150)#draw third circleturtle.penup()turtle.goto(0,-100)turtle.pendown()turtle.circle(100)#draw fourth circleturtle.penup()turtle.goto(0,-50)turtle.pendown()turtle.circle(50)画笔的坐标默认在0,0,就以它为圆心 。因为turtle画圆的时候是从圆的底部开始画的,所以需要找到四个圆底部的坐标比如:第一个半径为200的圆,底部为(0,-200)第二个半径为150的圆 , 底部为(0,-150)第三个半径为100的圆,底部为(0,-100)第四个半径为50的圆,底部为(0,-50)画的时候按下面的步骤:抬起画笔:turtle.penup()移动到相应坐标:turtle.goto(坐标)放下画笔:turtle.pendown()画圆:turtle.circle(半径)【python爱心代码怎么运行,如何用python代码打出心形函数】

    推荐阅读