💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
``` import turtle turtle.pensize(2) turtle.bgcolor("black") colors = ["red", "yellow", "purple", "blue"] for x in range(50): turtle.forward(2*x) turtle.color(colors[x % 4]) turtle.left(91) turtle.done() ```