endswitch()函数

原文链接

一、功能:

判断字符串是否以指定字符或子字符串结尾。

二、函数原型:

str.endswith("suffix",    	=> 后缀,可以是单个字符,也可以是字符串,还可以是元组;
	     	  start=0,  	=> 索引字符串的起始位置;
	      	  end=len(str))	=> 索引字符串的结束位置。
返回值:布尔类型(True,False

三、应用举例:

str = "i love python"
print("1:",str.endswith("n"))
print("2:",str.endswith("python"))
print("3:",str.endswith("n",0,6))# 索引 i love 是否以“n”结尾。
print("4:",str.endswith("")) #空字符
print("5:",str[0:6].endswith("n")) # 只索引 i love
print("6:",str[0:6].endswith("e"))
print("7:",str[0:6].endswith(""))
print("8:",str.endswith(("n","z")))#遍历元组的元素,存在即返回True,否者返回False
print("9:",str.endswith(("k","m")))

#元组案例
file = "python.txt"
if file.endswith("txt"):     
    print("该文件是文本文件")
elif file.endswith(("AVI","WMV","RM")):    
    print("该文件为视频文件")
else:    
    print("文件格式未知")

运行结果:
1: True
2: True
3: False
4: True
5: False
6: True
7: True
8: True
9: False

该文件是文本文件

原文链接

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值