Commit eb38da0d by BellCodeEditor

auto save

parent 87547b05
Showing with 23 additions and 7 deletions
s=66
dd=input('请输入姓名:')
s=int(input('请输入臂力:'))
a=['赵一',30,'丁二',37,'孙五',52,'王猛',89,'周亮',98]
for i in range(len(a)):
if i%2==1 and a[i]>=s:
......@@ -7,4 +7,6 @@ for i in range(len(a)):
a.insert(i,s)
break
print(a)
print(dd)
print(s)
a[6:]
\ No newline at end of file
a=['7']
s=['5','1']
a.extend(s)
print(a)
\ No newline at end of file
import turtle
a=turtle.Pen()
a.hideturtle()
a.begin_fill()
a.up()
a.goto(0,-50)
a.down()
a.circle(50)
a.fillcolor("blue")
a.end_fill()
a.up()
a.goto(-100,100)
a.down()
a.left(90)
for i in range(4):
a.right(90)
a.forward(200)
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