Home > Backend Development > Python Tutorial > How to count the number of different characters using python

How to count the number of different characters using python

silencement
Release: 2019-06-10 15:10:41
Original
15772 people have browsed it

How to count the number of different characters using python

How to count the number of times different characters appear in a string?

Then use the powerful python to solve it!

Example

#统计不同字符的次数

str_1 = input("请输入一串字符:")

result = {}

for i in str_1:
    result[i] = str_1.count(i)

print(result)
Copy after login

Output result

请输入一串字符:afbvssevsbrfnvb
{'a': 1, 'f': 2, 'b': 3, 'v': 3, 's': 3, 'e': 1, 'r': 1, 'n': 1}
Copy after login

Analysis: First, we use the input function to obtain the user's input, and at the same time create an empty dictionary result for storage Statistical results; secondly, use a for loop to traverse the user's input, add the traversal results and statistical results to the result, print the result, and realize the statistics of the number of characters.

The above is the detailed content of How to count the number of different characters using python. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template