直接上代码:
import turtle as t
import os
t.screensize(800,600)
t.pencolor("red")
text="CSDE@轻羽寒殇"
x=len(text)
while True:
for i in text:
t.write(i,font='consolas')
t.right(360/x)
t.penup()
t.forward(30)
t.delay(100)
break
t.hideturtle()
os.system('pause')
运行结果:
在这里我不做过多解释,如果有没明白的可以自己查找资料,(*^▽^*)