python入门——列表简介的相关练习

1.元素的增删 friends = [ 'alice', 'bob', 'cindy', 'Tom'] for person in friends: print(person.title()+',how are you?\n') print( friends[1].title()+' is not here, but lucy have come here.\n') friends[1] = 'l
相关文章
相关标签/搜索