摘要:
官方文档: sort(*, key=None, reverse=False) This method sorts the list in place, using only < comparisons between items. Exceptions are not suppressed - if 阅读全文
摘要:
pop和remove方法都可以删除list中的元素,个人更倾向于使用pop方法。 pop方法:删除过程中还能返回被删除的值 remove方法: 从左往右,删除首次出现的指定元素 删除过程不会返回被删除的值 阅读全文
摘要:
自带帮助文档: 阅读全文
摘要:
自带帮助文档: 阅读全文