Commit 64dd353c by BellCodeEditor

auto save

parent 0db28b07
import turtle
pen=turtle.Pen()
pen.speed(0)
n=1
for i in range(300):
pen.forward(n)
pen.rt(91)
n=n+1
p.done()
1 x 1 = 1
1 x 2 = 2 2 x 2 = 4
1 x 3 = 3 2 x 3 = 6 3 x 3 = 9
1 x 4 = 4 2 x 4 = 8 3 x 4 = 12 4 x 4 = 16
1 x 5 = 5 2 x 5 = 10 3 x 5 = 15 4 x 5 = 20 5 x 5 = 25
1 x 6 = 6 2 x 6 = 12 3 x 6 = 18 4 x 6 = 24 5 x 6 = 30 6 x 6 = 36
1 x 7 = 7 2 x 7 = 14 3 x 7 = 21 4 x 7 = 28 5 x 7 = 35 6 x 7 = 42 7 x 7 = 49
1 x 8 = 8 2 x 8 = 16 3 x 8 = 24 4 x 8 = 32 5 x 8 = 40 6 x 8 = 48 7 x 8 = 56 8 x 8 = 64
1 x 9 = 9 2 x 9 = 18 3 x 9 = 27 4 x 9 = 36 5 x 9 = 45 6 x 9 = 54 7 x 9 = 63 8 x 9 = 72 9 x 9 = 81
\ No newline at end of file
import turtle
pen=turtle.Pen()
colors=["red","orange","yellow","green"]
pen.speed(0)
for i in range(1,300):
pen.pencolor(colors[i%4])
pen.forward(i)
pen.rt(91)
turtle.done()
\ No newline at end of file
import turtle
pen=turtle.Pen()
pen.speed(0)
n=1
for i in range(300):
pen.forward(n)
pen.rt(91)
n=n+1
p.done()
for i in range(1,10):
for j in range(1,i+1):
print(j,"x",i,"=",j*i,end=" ")
print()
\ No newline at end of file
# 臂力挑战赛
# 快用你机灵的小脑瓜想想,如何将刘强和他的臂力值自动插入到hero列表中?
name='刘强'
power=66
name=input("姓名")
power=int(input("臂力"))
hero=['赵一',30,'丁二',37,'孙五',52,'王猛',89,'周亮',98]
# 自动排序
for i in range(len(hero)):
if i%2==1 and hero[i]>=power:
hero.insert(i-1,name)
hero.insert(i,power)
print(hero)
\ No newline at end of file
if power>hero[-1]:
hero.append(name)
hero.append(power)
print(hero[-6:])
\ 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