给我一段画玫瑰花的代码
```python
import turtle
def draw_rose():
turtle.bgcolor("black")
turtle.speed(0)
turtle.color("red")
for i in range(100):
turtle.forward(2 * i)
turtle.left(361)
turtle.done()
draw_rose()
```
免责声明:
以上内容除特别注明外均来源于网友提问,创作工场回答,未经许可,严谨转载。