萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 編程語言綜合 >> Python中splitlines()方法的使用簡介

Python中splitlines()方法的使用簡介

   這篇文章主要介紹了Python中splitlines()方法的使用簡介,是Python入門中的基礎知識,需要的朋友可以參考下

  splitlines()方法返回一個字符串的所有行,可選包括換行符列表(如果num提供,則為true)

  語法

  以下是splitlines()方法的語法:

  ?

1 str.splitlines( num=string.count('n'))

  參數

  num -- 這是任何數,如果存在它會被認為換行需要被包括行數。

  返回值

  如果找到匹配的字符串此方法返回true,否則為false。

  例子

  下面的例子顯示splitlines()方法的使用。

  ?

1 2 3 4 5 6 7 8 #!/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 );

  當我們運行上面的程序,它會產生以下結果:

  ?

1 2 3 4 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']
copyright © 萬盛學電腦網 all rights reserved