赞
踩
描述:统计字符串里某个字符出现的次数。可以选择字符串索引的起始位置和结束位置。
语法:str.count("char", start,end) 或 str.count("char") -> int 返回整数
- str = "i love python,i am learning python"
- print(str.count("i")) #star 和end 为默认参数
- print(str.count("i",2)) # star值为2,end值为默认参数
- print(str.count("i",2,5)) #star值为2,end值为5
- print(str.count("am")) #多字符统计
- 3
- 2
- 0
- 1
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。