(编辑:jimmy 日期: 2024/11/13 浏览:2)
若你使用过 Shell 中的 awk 工具,会发现用它来分割字符串是非常方便的。特别是多个连续空格会被当做一个处理。
[root@localhost ~]# cat demo.txt
hello world
[root@localhost ~]#
[root@localhost ~]# awk '{print$1,$2}' demo.txt
hello world
可是转换到 Python 上面来呢"text-align: center">
换用函数的写法,可以这样
> msg='hello----world'
> msg.split('-')
['hello', '', '', '', 'world']
>
> filter(lambda item: True if item else False, msg.split('-'))
['hello', 'world']
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。