Commit 018d4461 by BellCodeEditor

save project

parent 98f24605
Showing with 21 additions and 6 deletions
# 直接运行以下代码,说说你的发现:
list_hero=['赵一',30,'丁二',37,'孙五',52,'王猛',89,'周亮',98]
dict_hero = {'赵一':30,'丁二':37,'孙五':52,'王猛':89,'周亮':98}
print(len(list_hero))
print(len(dict_hero))
\ No newline at end of file
import turtle
pen=turtle.Pen()
screen=turtle.Screen()
pen.speed(200000000000000000000000000000)
pen.hideturtle()
screen.bgcolor('black')
i=0
while i<200:
pen.pencolor('white')
pen.penup()
pen.goto(0,0)
pen.forward(100)
pen.pendown()
pen.circle(100)
pen.left(2)
i+=1
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