文字列を指定:英語の文を入力し、英語の文の各単語が文字列に現れる回数を出力します.

405 ワード

def geshu(src):
    n=0;
    str1 = src.split();
    len1=len(str1);
    for s in str1:
        n = 0;
        for i in range(len1):
            if(s==str1[i]):
                n+=1;
                str1[i]=' ';
        if(s==' '):
            continue;
        else:
            print(s,n);
str2='hello nice to meet you nice to meet you too';
geshu(str2);