Commit 5009c485 by BellCodeEditor

save project

parent 992f57c5
Showing with 37 additions and 0 deletions
bros=['刘备','关羽','张飞']
bros[0]='关羽'
bros[1]='刘备'
print(bros)
for i in bros:
print(i)
#llllllll=['!',111,'!','^','^']
#llllllll.remove("^")
#print(llllllll)
a=['华雄']
#a.insert(1,'关羽')
#print(a)
#a.append('张飞')
#print(a)
c=['颜良','文丑']
a.extend(c)
print(a)
y=['LB^','ZY','LB','GY','ZF','XHD','GSZ']
print(y[1:4])
print(y[0])
print(y[:])
\ 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