1.Install Autodesk SketchBook Designer 2012 2.Use as Serial 666-69696969, 667-98989898, 400-45454545 .. or anything matching those templates 3.Use as Product Key 741D1 4.Finish the installation & restart Autodesk Product 5.Before clicking on Activat
通过使用turtle绘画象棋棋盘,供大家参考,具体内容如下
# 绘制象棋棋盘
import turtle
t = turtle.Pen()
t.width(2) # 设置画笔粗细
t.speed(1) # 设置画笔移动速度
# 画竖线
t.penup()
t.goto(-400, -400)
for i in range(9):
t.pendown()
if i != 0 and i != 8:
t.goto(-400+i*100, 0)
t.penup()