Commit 0fc38b27 by BellCodeEditor

save project

parent 6957e43f
Showing with 9 additions and 23 deletions
dict={}
dict['猴十']=25
print(dict)
while True:
if input('您想找什么:') in dict:
print("爬")
else:
print('404notfound')
\ No newline at end of file
dict{'sss':100,'ddd':200,'fff':300}
dict{sss}=200
import turtle
a=turtle.Pen()
a.pensize(3)
a.pencolor("blue")
a.fillcolor("blue")
a.penup()
a.goto(160,-160)
a.write("春晓\n春眠不觉晓\n处处闻啼鸟\n夜来风雨声\n花落知多少",font=("times",20,"normal"))
a.penup()
a.goto(0,0)
a.pendown()
a.begin_fill()
a.left(45)
a.fd(160)
a.circle(80,180)
a.right(90)
a.circle(80,180)
a.fd(160)
a.end_fill()
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