说明
1、splitlines按换行符(\()方法使用r、\r\n、\n) 分割。
2、如果参数keepends是False,则返回是否包含换行符的列表。
如果是True,则包含换行符。
返回值
返回是否包含换行符列表。
实例
str1='Amo\r\nPaul\r\nJerry' list1=str1.splitlines()#没有换行符的列表 print(list1) print(list1[0],list1[1],list1[2] list2=str1.splitlines(True)#带换行符的列表 print(list2) print(list2[0],list2[1],list2[2],sep='')#用sep去除空间
以上是splitlines在python中返回列表的方法,有时会在列表操作中遇到,大家可以了解基本用法。更多Python学习指南:python基础教程
本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。