zoukankan      html  css  js  c++  java
  • Python strip()与split()方法

    Python strip() 方法用于移除字符串头尾指定的字符(默认为空格)。

    语法

    strip()方法语法:

    str.strip([chars]);

    参数

    chars -- 移除字符串头尾指定的字符。

    返回值

    返回移除字符串头尾指定的字符生成的新字符串。

    实例

    以下实例展示了strip()函数的使用方法:

    #!/usr/bin/python
    
    str = "0000000this is string example....wow!!!0000000";
    print str.strip( ‘0‘ );

    以上实例输出结果如下:

    this is string example....wow!!!

    描述

    Python split()通过指定分隔符对字符串进行切片,如果参数num 有指定值,则仅分隔 num 个子字符串

    语法

    split()方法语法:

    str.split(str="", num=string.count(str)).

    参数

    • str -- 分隔符,默认为所有的空字符,包括空格、换行(\n)、制表符(\t)等。
    • num -- 分割次数。

    返回值

    返回分割后的字符串列表。

    实例

    以下实例展示了split()函数的使用方法:

    #!/usr/bin/python
    
    str = "Line1-abcdef \nLine2-abc \nLine4-abcd";
    print str.split( );
    print str.split(' ', 1 );

    以上实例输出结果如下:

    ['Line1-abcdef', 'Line2-abc', 'Line4-abcd']
    ['Line1-abcdef', '\nLine2-abc \nLine4-abcd']
  • 相关阅读:
    谁的朱砂痣染白了谁的白月光
    随机数
    常见面试简单汇总整理
    oss分页列举遍历文件创建软链接
    oss创建软链接
    看英文文档的好处
    js原型链相关
    js 中的this指向问题
    jquery.fn.init
    转载
  • 原文地址:https://www.cnblogs.com/yunyinzhihua/p/6884920.html
Copyright © 2011-2022 走看看