我是靠谱客的博主 坦率砖头,最近开发中收集的这篇文章主要介绍python 统计字符串a在字符串b出现的次数_Python 统计一个英文字符串中每个字符出现的次数...,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

定义字符串转化为list函数strchls

def strchls (str):

list = [] # 集合

i = 0

for w in str:

# print(w)

if w != ' ':

list.append(w)

return list

定义list 转化为字典序列,并把字符作为key(不重复)

def countw(list):

count_word = {}

for w in list:

# j = 1

if w not in count_word.keys():

count_word[w] = 1 # 编号 w:j

else:

count_word[w] += 1 # 编号 w:j

return count_word

函数调用

str = 'how are you'

ls = strchls (str)

print(countw(ls))

方法二

#去空格,转化为list,然后再转化为字典即可

str = 'how are you'

list = []

list2 = []

dict={}

i= 0

for w in str:

if w!=' ':

list.append(w)

# print(list)

for w in list:

c = list.count(w)

dict[w] = c

print(dict)

方法三

直接去空格,转化为字典,利用字典的key值唯一

str = 'how are you'

dict = {}

for w1 in str:

if w1 != ' ':

for w1 in list:

c = list.count(w1)

dict[w1] = c

print(dict)

最后

以上就是坦率砖头为你收集整理的python 统计字符串a在字符串b出现的次数_Python 统计一个英文字符串中每个字符出现的次数...的全部内容,希望文章能够帮你解决python 统计字符串a在字符串b出现的次数_Python 统计一个英文字符串中每个字符出现的次数...所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(66)

评论列表共有 0 条评论

立即
投稿
返回
顶部