学生优秀编程代码展示三

[日期:2022-05-31] 作者:信息技术 次浏览 [字体: ]

2023届八班王博恩同学编写的程序代码如下:

import os

import turtle as t
t.speed(100)
for i in range(90):
    for j in range(i):
        t.circle(300-i)
        t.left(j)
        t.goto(i,j)
os.system("pause")