Commit cd8e97a5 by BellCodeEditor

save project

parent 77609a26
Showing with 20 additions and 1 deletions
...@@ -12,7 +12,14 @@ while True: ...@@ -12,7 +12,14 @@ while True:
if name !=username: if name !=username:
print("密码错误!请重新输入") print("密码错误!请重新输入")
print("温馨提示:您还有"+str(i)+"次登陆机会") print("温馨提示:您还有"+str(i)+"次登陆机会")
continue contin
ue
if password != userpassword: if password != userpassword:
print("用户名和密码错误!请重新输入") print("用户名和密码错误!请重新输入")
print("温馨提示:您还有"+str(i)+"次登陆机会") print("温馨提示:您还有"+str(i)+"次登陆机会")
......
import turtle
pen=turtle.Pen()
distdnce=1
for i in range(3000):
pen.forward(distdnce)
distdnce+=1
pen.right(239)
pen.hideturtle()
turtle.done()
\ No newline at end of file
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