Commit 1360aa66 by BellCodeEditor

auto save

parent ad691bd0
Showing with 43 additions and 2 deletions
i=3
i=5
us="python"
ue="123456"
while True:
......@@ -11,9 +11,11 @@ while True:
break
if n!=us:
print("名字错误")
print("温馨提示,您还有"+str(i)+"次机会")
continue
if p!=ue:
elif p!=ue:
print("密码错误")
print("温馨提示,您还有"+str(i)+"次机会")
else:
print("账号被锁定")
exit()
......
'''import turtle
turtle.color("yellow")
turtle.dot(300)
turtle.forward(150)
turtle.color("white")
turtle.dot(150)
turtle.done()'''
'''a=int(input("请输入长方形形的宽"))
b=int(input("请输入长方形形的长"))
s=a*b
print("长方形的面积是",s)'''
'''a=float(input("请输入本子的单价:"))
b=float(input("请输入本子的数量:"))
c=float(input("请输入你带了多少钱:"))
d=a*b
if d>c:
print("False")
else:
print("True")'''
import turtle
turtle.pensize(10)
turtle.circle(-70,steps=3)
turtle.right(90)
turtle.forward(100)
turtle.right(-90)
turtle.color("red")
turtle.begin_fill()
turtle.circle(30)
turtle.end_fill()
turtle.pencolor("black")
turtle.circle(30)
turtle.right(90)
turtle.forward(-100)
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