wondering what happened to my python code that draw a checkerboard with turtle? any helps?

前端 未结 0 1153
伪装坚强ぢ
伪装坚强ぢ 2020-12-18 14:34
import turtle
def main():
    turtle.pensize(4)
    for x in range(5):
        for y in range(5):
            turtle.penup()
            turtle.goto(x*50,y*50)
              


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题