python之列表添加的四種方法

列表的添加 1)+ 添加 2)append 追加 一次只能添加一個元素到列表中,適合用於循環裏 3)extend 拉伸 可一次添加多個元素到列表中 4)insert 插入 append與extend都是添加在最後,insert可以插入在指定位置 命令 作用 service.insert(n,’ ') 將’'中的內容,插入到第n個之後 service.insert(1,‘samba’) 將samba
相關文章
相關標籤/搜索