在Python中,如果你想要从列表中删除所有素之间的空格,你可以使用以下几种方法:
1. 使用列表推导式和`strip()`方法:
list1 = [' 122 ', ' 2333 ', ' 3444 ', ' ', ' 422 ', ' ', ' ', ' 54 ', ' ']list1 = [item.strip() for item in list1 if item.strip()]print(list1)
2. 使用`join()`和`split()`方法:
list1 = [' 122 ', ' 2333 ', ' 3444 ', ' ', ' 422 ', ' ', ' ', ' 54 ', ' ']list1 = [item for item in list1 if item]list1 = list1[1:-1] 去掉首尾的空格print(list1)
3. 使用`filter()`函数:
list1 = [' 122 ', ' 2333 ', ' 3444 ', ' ', ' 422 ', ' ', ' ', ' 54 ', ' ']list1 = list(filter(None, (item.strip() for item in list1)))print(list1)
4. 使用`map()`函数:
list1 = [' 122 ', ' 2333 ', ' 3444 ', ' ', ' 422 ', ' ', ' ', ' 54 ', ' ']list1 = list(map(lambda x: x.strip() if x.strip() else None, list1))list1 = [item for item in list1 if item]print(list1)
以上方法都可以有效地删除列表中所有素之间的空格。选择哪一种方法取决于你的具体需求和代码风格。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://sigusoft.com/bj/69536.html