美文网首页
Python-字符串操作

Python-字符串操作

作者: 微雨旧时歌丶 | 来源:发表于2019-05-27 17:20 被阅读0次
    • 把一个字符串中的所有数字去掉
    item = 'sdfsdf334ds234f&23&^^&'
    char = ''.join(list(filter(lambda x: not x.isdigit(), item)))
    # out: 'sdfsdfdsf&&^^&'
    

    相关文章

      网友评论

          本文标题:Python-字符串操作

          本文链接:https://www.haomeiwen.com/subject/jkxktctx.html