Commit 314d2a76 by BellCodeEditor

auto save

parent 355e579f
Showing with 9 additions and 2 deletions
...@@ -5,7 +5,14 @@ name.insert(6,"Sally") ...@@ -5,7 +5,14 @@ name.insert(6,"Sally")
name.pop(3) name.pop(3)
print(name) print(name)
''' '''
"""
name=["John","Sam","Nina","Daming","Sally","Helen"] name=["John","Sam","Nina","Daming","Sally","Helen"]
a=["XiaoLi","Qiang","Neo"] a=["XiaoLi","Qiang","Neo"]
name.extend(a) name.extend(a)
print(name[2:7]) print(name[2:7])
\ No newline at end of file """
fr=[]
def myf(fr):
fr=['12','23']
myf(fr)
print(fr)
\ 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