Python 统计一个英文字符串中每个字符出现的次数

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 str:
            c = str.count(w1)
            dict[w1] = c
print(dict)
  • 11
    点赞
  • 91
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值