Commit 6890f5ce by BellCodeEditor

auto save

parent ed726179
Showing with 44 additions and 0 deletions
a=input()
b=input()
while True:
if a == "python" and b == "123456":
print("登陆成功")
break
else:
print("登陆失败")
\ No newline at end of file
import turtle
import turtle
t=turtle.Turtle()
t.speed(100)
t.shape('turtle')
t.fillcolor("green")
turtle.screensize(300,300,'red')
t.penup()
t.goto(-150,-60)
t.pendown()
t.begin_fill()
t.forward(300)
t.penup()
t.goto(-150,-60)
t.pendown()
t.setheading(90)
t.circle(-150,180)
t.end_fill()
t.penup()
t.goto(-150,90)
t.fillcolor("yellow")
t.pendown()
t.setheading(0)
t.begin_fill()
for i in range(3):
t.forward(300)
t.left(120)
t.end_fill()
# t.fillcolor("purple")
t.penup()
t.goto(0,350)
t.pendown()
t.dot(20,'purple')
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