Commit 723085a9 by BellCodeEditor

save project

parent d6162f82
Showing with 10 additions and 1 deletions
...@@ -10,7 +10,7 @@ if i>0: ...@@ -10,7 +10,7 @@ if i>0:
if name == username and password == userpassword: if name == username and password == userpassword:
print("登录成功!") print("登录成功!")
break break
if name!=username if name != username
print("用户名不存在,请重新输入") print("用户名不存在,请重新输入")
else: else:
......
import turtle
pen=turtle.Pen()
distance=1
for i in range(300):
pen.right(91)
distance+=1
pen.forward(distance)
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