Commit 25e63e2f by BellCodeEditor

save project

parent 38f9040c
Showing with 11 additions and 0 deletions
...@@ -5,6 +5,7 @@ while True: ...@@ -5,6 +5,7 @@ while True:
us = input("请输入您的用户名:") us = input("请输入您的用户名:")
if us != usename : if us != usename :
print("用户名不正确,请重新输入!") print("用户名不正确,请重新输入!")
print("")
continue continue
ps = input("请输入您的密码:") ps = input("请输入您的密码:")
if ps != password : if ps != password :
......
import turtle
pen = turtle.Pen()
distance=1
for i in range(300):
pen.forward(distance)
distance+=2
pen.right(91)
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