sairate 7df250638d chore: 添加项目基础结构和示例代码
- 创建 .idea 目录和相关配置文件,设置项目结构
- 添加多个课堂成果示例代码,涵盖不同主题和功能
- 创建和配置 .gitignore 文件,忽略特定文件和目录
2025-07-05 09:36:00 +08:00

9 lines
153 B
Python

import turtle as t
def side6():
for i in range(6):
t.forward(100)
t.right(60)
for i in range(6):
side6()
t.right(60)
t.done()