Commit 36330007 by BellCodeEditor

auto save

parent a32bcba3
Showing with 16 additions and 8 deletions
h="py"
j="088679"
k=input("输入账号:")
l=input("输入密码:")
if k=='py' and l=='088679':
print("正确!")
else:
print("错误")
import turtle as t
def wu(a):
t.pensize(20)
t.pencolor('red')
t.begin_fill()
t.fillcolor('red')
t.left(45)
t.forward(2*a)
t.circle(a,180,3)
t.right(90)
t.circle(a,180,3)
t.forward(2*a)
t.end_fill()
t.hideturtle()
t.done()
wu(100)
......
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