Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SalimovSymbolsPodchet #7

Open
RinatSalimov opened this issue Apr 22, 2019 · 0 comments
Open

SalimovSymbolsPodchet #7

RinatSalimov opened this issue Apr 22, 2019 · 0 comments

Comments

@RinatSalimov
Copy link

def count_repeated_letter(string1):
list1=[]

for letter in string1:
    if string1.count(letter)>=2:
        if letter not in list1:
            list1.append(letter)


for item in list1:
    if item!= " ":
        print(item,string1.count(item))

count_repeated_letter('letter has 1 e and 2 e and 1 t and two t')

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant