Commit 64738952 by BellCodeEditor

save project

parent 76d5c489
Showing with 11 additions and 6 deletions
# 直接运行以下代码,说说你的发现: import turtle
list_hero=['赵一',30,'丁二',37,'孙五',52,'王猛',89,'周亮',98] p=turtle.pen()
dict_hero = {'赵一':30,'丁二':37,'孙五':52,'王猛':89,'周亮':98} p.fillcolor("red")
print(len(list_hero)) p.begin_fill()
print(len(dict_hero)) for i in range(5):
\ No newline at end of file p.forward(200)
p.right(144)
p.hideturtle()
p.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