[问题] 新手请教Turtle问题

楼主: jovy (bowwow)   2019-10-06 12:38:44
求教各位高手
小妹python新手,
今天练习写了用turtle跑99乘法表,
内容如下:
import turtle
y = 40
for i in range(1,10):
turtle.penup()
turtle.goto(-200, y)
turtle.pendown()
x = str(i) + " |"
y = y-25
for j in range(1,10):
x = x + format(i * j, ">6d")
turtle.write(x, font=("Arial",14,"normal"))
但跑出来的结果前三行总是无法对齐,
求解,感激不尽!!!!

Links booklink

Contact Us: admin [ a t ] ucptt.com