Commit 99dff5d4 by BellCodeEditor

auto save

parent 7ec11264
Showing with 21 additions and 3 deletions
import turtle as t
t.pensize(2)
# 笔大小2像素
t.pencolor("red")
# 颜色为红色
t.left(45)
# 45度
t.fd(200)
# 向前200直线
t.circle(100, 180)
# 画一圆半径100 弧度180
t.right(90)
# 向右90度
t.circle(100, 180)
# 再画一个圆半径100 弧度180
t.fd(200)
# 直线向前直线200
t.done()
# 绘制完成
i = 5 # 行
j = 3 # 列
# 使用变量i和j,代替乘法算式里面的元素,打印出单个乘法算式
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment