本文主要是介绍python中splitlines的用法_Python中splitlines()方法的使用简介,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
python中splitlines的用法_Python中splitlines()方法的使用简介
Python中splitlines()方法的使用简介
Python编程语言Python 是一种面向对象、解释型计算机程序设计语言,由Guido van Rossum于1989年底发明,第一个公开发行版发行于1991年。Python语法简洁而清晰,具有丰富和强大的类库。它常被昵称为胶水语言,它能够把用其他语言制作的各种模块(尤其是C/C++)很轻松地联结在一起。
这篇文章主要介绍了Python中splitlines()方法的使用简介,是Python入门中的基础知识,需要的朋友可以参考下
splitlines()方法返回一个字符串的所有行,可选包括换行符列表(如果num提供,则为true)
语法
以下是splitlines()方法的语法:
str.splitlines( num=string.count(n))
参数
num -- 这是任何数,如果存在它会被认为换行需要被包括行数。
返回值
如果找到匹配的字符串此方法返回true,否则为false。
例子
下面的例子显示splitlines()方法的使用。
#!/usr/bin/python
str = "Line1-a b c d e fnLine2- a b cnnLine4- a b c d";
print str.splitlines( );
print str.splitlines( 0 );
print str.splitlines( 3 );
print str.splitlines( 4 );
print str.splitlines( 5 );
当我们运行上面的程序,它会产生以下结果:
[Line1-a b c d e f, Line2- a b c, , Line4- a b c d]
[Line1-a b c d e f, Line2- a b c, , Line4- a b c d]
[Line1-a b c d e fn, Line2- a b cn, n, Line4- a b c d]
[Line1-a b c d e fn, Line2- a b cn, n, Line4- a b c d]
[Line1-a b c d e fn, Line2- a b cn, n, Line4- a b c d]
相关阅读:
Python中splitlines()方法的使用简介
Python中encode()方法的使用简介
Python中isnumeric()方法的使用简介
Python中title()方法的使用简介
探究Python中isalnum()方法的使用
详解Python中find()方法的使用
详解Python中expandtabs()方法的使用
解读Python中degrees()方法的使用
Python中zfill()方法的使用教程
浅谈Python中copy()方法的使用
详解Python中time()方法的使用的教程
Python中tell()方法的使用详解
这篇关于python中splitlines的用法_Python中splitlines()方法的使用简介的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!