编写一个程序,输入一个字符串统计字符串中字母、数字及其他字符的个数
时间: 2024-05-04 19:16:22 浏览: 82
好的,请给我输入要统计的字符串。
(等待用户输入)
下面是我的代码,请查看:
```python
string = input("请输入要统计的字符串:")
letter_count = 0
number_count = 0
other_count = 0
for char in string:
if char.isalpha():
letter_count += 1
elif char.isnumeric():
number_count += 1
else:
other_count += 1
print("字母个数为:", letter_count)
print("数字个数为:", number_count)
print("其他字符个数为:", other_count)
```
请检查上述代码是否满足您的要求。
相关问题
Python编写一个程序,输入一个字符串统计字符串中字母、数字及其他字符的个数
好的,我知道了。以下是 Python 代码,可以实现统计字符串中字母、数字及其他字符的个数:
```
str = input("请输入一个字符串:")
letters = 0
digits = 0
others = 0
for i in str:
if i.isalpha():
letters += 1
elif i.isdigit():
digits += 1
else:
others += 1
print("字母个数:", letters)
print("数字个数:", digits)
print("其他字符个数:", others)
```
输入任何一个字符串后,程序将逐个字符进行判断,并分别统计出字母、数字及其他字符的个数。最后输出统计结果。
编写一个程序由实参传来一个字符串统计字符串中数字,字母,空格和其他字符的个数
以下是Python程序实现:
```python
def count_chars(s):
digits = letters = spaces = others = 0
for char in s:
if char.isdigit():
digits += 1
elif char.isalpha():
letters += 1
elif char.isspace():
spaces += 1
else:
others += 1
return digits, letters, spaces, others
s = input("请输入一个字符串:")
digits, letters, spaces, others = count_chars(s)
print("数字的个数为:", digits)
print("字母的个数为:", letters)
print("空格的个数为:", spaces)
print("其他字符的个数为:", others)
```
首先定义了一个函数`count_chars`,接收一个字符串`s`作为参数,并返回数字、字母、空格、其他字符的个数。
然后在函数内部定义四个变量`digits`、`letters`、`spaces`、`others`,分别表示数字、字母、空格、其他字符的个数,初始值均为0。
接着使用for循环遍历字符串`s`中的每一个字符,判断其属于哪一类字符,并将对应的计数器加1。
最后返回四个计数器的值。
在主程序中,首先接收用户输入的字符串,并调用`count_chars`函数统计各种字符的个数。
最后输出结果。
阅读全文