Python中统计一段文字有多少行
时间: 2024-03-03 19:47:30 浏览: 96
py代码-已知参数origin和userInput是两个字符串,并且origin的长度大于userInput的长度。代码功能是统计并返回字符串origin和userInput中对应位置上相同字符的数量。
5星 · 资源好评率100%
在Python中,可以使用字符串的 `splitlines()` 方法来将字符串按照行分割成一个列表,然后统计该列表的元素个数即可得到该字符串有多少行。示例如下:
```python
text = "hello\nworld\nthis\nis\na\ntest"
lines = text.splitlines()
num_lines = len(lines)
print("Number of lines:", num_lines)
```
输出结果为:
```
Number of lines: 6
```
其中,`text` 是待统计的字符串,`lines` 是将其按照行分割后得到的列表,`num_lines` 是该字符串的行数。
阅读全文