5、然后开始打上画太阳花所需的代码,如下:
from turtle import * color('red','yellow') begin_fill() while True: forward(200) left(170) if abs(pos()) <1: break end_fill() done()
6、然后在Edit中找到Save As,保存文件(或者直接按Ctrl Shift S)
7、然后保存到你想要保存的文件夹中
8、在上方栏目中找到Run,然后选择Run Module(或者直接按F5)