欢迎各位兄弟 发布技术文章
这里的技术是共享的
在 Python 中,可以使用字符串的方法 endswith()
来判断一个字符串是否以特定的后缀(如 .zip
)结尾。以下是一个简单的示例:
python
# 定义一个字符串 file_name = "example.zip" # 判断字符串是否以 .zip 结尾 if file_name.endswith(".zip"): print("该字符串以 .zip 结尾") else: print("该字符串不以 .zip 结尾")
endswith()
方法返回 True
如果字符串以指定的后缀结尾,否则返回 False
。
在上面的例子中,file_name
为 "example.zip"
,使用 endswith(".zip")
方法会返回 True
。
你可以将任何字符串替换为 file_name
来测试其他值。