Python 练习实例17

简介: Python 练习实例17

题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。

程序分析:利用 while 或 for 语句,条件为输入的字符不为 '\n'。

实例(Python2.x) - 使用 while 循环

#!/usr/bin/python# -*- coding: UTF-8 -*- import strings = raw_input('请输入一个字符串:\n')letters = 0space = 0digit = 0others = 0i=0while i < len(s):     c = s[i]    i += 1    if c.isalpha():         letters += 1    elif c.isspace():         space += 1    elif c.isdigit():         digit += 1    else:         others += 1print 'char = %d,space = %d,digit = %d,others = %d' % (letters,space,digit,others)

实例(Python3.x) - 使用 for 循环

#!/usr/bin/python3 import strings = input('请输入一个字符串:\n')letters = 0space = 0digit = 0others = 0for c in s:     if c.isalpha():         letters += 1    elif c.isspace():         space += 1    elif c.isdigit():         digit += 1    else:         others += 1print ('char = %d,space = %d,digit = %d,others = %d' % (letters,space,digit,others))

以上实例输出结果为:

请输入一个字符串:

123runoobc  kdf235*(dfl

char = 13,space = 2,digit = 6,others = 2

相关文章
|
3天前
|
Python
Python 练习实例94
Python 练习实例94
|
3天前
|
Python
Python 练习实例92
Python 练习实例92
|
3天前
|
Python
Python 练习实例93
Python 练习实例93
|
2天前
|
Python
Python 练习实例97
Python 练习实例97
|
2天前
|
Python
Python 练习实例96
Python 练习实例96
|
4天前
|
Python
Python 练习实例90
Python 练习实例90
|
4天前
|
数据安全/隐私保护 Python
Python 练习实例89
Python 练习实例89
|
4天前
|
Python
Python 练习实例91
Python 练习实例91
|
2天前
|
Python
Python 练习实例95
Python 练习实例95
|
3天前
|
Python
Python中类属性与实例属性的区别
了解这些区别对于编写高效、易维护的Python代码至关重要。正确地使用类属性和实例属性不仅能帮助我们更好地组织代码,还能提高代码运行的效率。
6 0