Commit 4d29223a by BellCodeEditor

save project

parent f2a14054
Showing with 12 additions and 17 deletions
bros=["刘备","关羽","张飞"] a=["华雄"]
bros=["刘备","关羽","张飞"] a=["华雄"]
bro1=["刘备",183,9.6] a.append("关羽")
bro2=["关羽",185,9.5] print(a)
bro3=["张飞",180,9.3]
for i in range(len(bros)): a.insert(1,"关羽")
print(bros[i]) print(a)
print()
for i in range(len(bro1)): b=["华雄","张飞"]
print(bro1[i],end=" ") a.extend(b)
print() print(a)
for i in range(len(bro2)): \ No newline at end of file
print(bro2[i],end=" ")
print()
for i in range(len(bro3)):
print(bro3[i],end=" ")
\ 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