Commit f4e4f579 by BellCodeEditor

save project

parent fed6071f
Showing with 22 additions and 19 deletions
import turtle
pen=turtle.Pen()
pen.pensize(5)
pen.pencolor("pink")
pen.left(45)
pen.forward(100)
pen.circle(50,180)
pen.right(90)
pen.circle(50,180)
pen.forward(100)
pen.penup()
pen.goto(100,0)
pen.write("hi,nuo yi, 我想为你吟一首四季诗",font=("Times",30,"normal"))
pen.hideturtle()
turtle.done()
\ No newline at end of file
i=3
user="ye"
pw=123456
while True:
if i<=0:
a=input("请输入账号")
b=int(input("请输入密码"))
i-=1
if user==a:
if pw==b:
print("嗯~~~~")
break
else:
print("密码错误")
elif pw!=b:
print("账号密码错误")
else:
print("账号错误")
else:
print("你被封号了")
exit()
print("计算机还有5秒爆炸")
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