Commit 5e89fb0f by BellCodeEditor

save project

parent 654bc3ba
Showing with 20 additions and 0 deletions
from tkinter import font
import turtle
t=turtle.Pen()
t.write("你好,诺伊 \n 你好诺伊",font=("Times",20,"normal"))
p=turtle.Screen()
p.bgcolor("green")
y=turtle.Pen()
y.penup()
y.goto(-100,0)
y.pendown()
y.left(45)
y.forward(100)
y.circle(50,180)
y.right(90)
y.circle(50,180)
y.forward(100)
turtle.done()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment