Commit bfdd2273 by BellCodeEditor

auto save

parent 411a7ae5
Showing with 18 additions and 5 deletions
name=input()
kfy=int(input())
# 归档处
hero=['赵一',30,'丁二',37,'孙五',52,'王猛',89,'周亮',98,'张宇',100]
\ No newline at end of file
hore=["a","b","c","d","e","f"]
print(hore[2])
print(hore[-3])
hore.insert(4,"k")
hore.insert(7,"h")
kfy=["x","y","z"]
hore.extend(kfy)
hore.pop(3)
hore.remove("e")
print(hore[:])
print(hore[1:7])
print(hore[:8])
print(hore[2:])
kfy3=13
kfy2=[7,6,3,4,10,9,8,12,11]
for i in range(len(hero)):
if kfy2[i]
\ 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