Latest web development tutorials

Python 練習實例17

Python 100例 Python 100例

題目:輸入一行字符,分別統計出其中英文字母、空格、數字和其它字符的個數。

程序分析:利用while語句,條件為輸入的字符不為'\n'。

程序源代碼:

#!/usr/bin/python
# -*- coding: UTF-8 -*-

import string
s = raw_input('input a string:\n')
letters = 0
space = 0
digit = 0
others = 0
for c in s:
    if c.isalpha():
        letters += 1
    elif c.isspace():
        space += 1
    elif c.isdigit():
        digit += 1
    else:
        others += 1
print 'char = %d,space = %d,digit = %d,others = %d' % (letters,space,digit,others)

以上實例輸出結果為:

input a string:
w3big
char = 6,space = 0,digit = 0,others = 0

Python 100例 Python 100例