用python画玫瑰花的代码

是什么?

代码如下:

import turtle

t = turtle.Turtle()

t.fillcolor("red")

t.begin_fill()

for i in range(5): t.forward(100) t.right(144)

t.end_fill()

turtle.done()

你可能感兴趣的:(pycharm,ide,python)