file.endswith()
时间: 2024-05-06 13:16:59 浏览: 95
向文件末尾加内容
`file.endswith()` 是 Python 中的字符串方法,用于判断字符串是否以指定的后缀结尾。它的语法为:
```python
file.endswith(suffix[, start[, end]])
```
其中,`suffix` 是一个字符串或字符串元组,表示要检查的后缀;`start` 和 `end` 是可选参数,用于限制检查的字符串范围。如果字符串以指定的后缀结尾,则返回 `True`,否则返回 `False`。例如:
```python
filename = 'example.txt'
if filename.endswith('.txt'):
print('This is a text file.')
```
这段代码会输出 `This is a text file.`,因为 `filename` 变量以 `.txt` 结尾。
阅读全文