列表中元素的添加、删除、修改和排序
列表的添加方法append() 将元素’firewalld’ 添加到了列表末尾,不影响列表中的其他所有元素service = ['http','ssh','ftp'] ##定义列表#1print(service + ['firewalld'])#2.appendservice.append('firewalld')print(service)extend()方法,可以追加多个...