Latest web development tutorials

Python include esercizi 17

Python 100 Li Python 100 Li

Titolo: inserire una riga di caratteri rispettivamente, le statistiche che il numero di lettere inglesi, spazi, numeri e altri caratteri.

Analisi del programma: Utilizzando l'istruzione while, la condizione non è carattere di input '\ n'.

Source Code:

#!/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)

L'output sopra esempio è:

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

Python 100 Li Python 100 Li