Saturday, May 23, 2009

menghitung volume teks

>>> len(text1)
jumlah karakter dalam teks 1
260819
>>> len(set(text1))
jumlah kalimat dalam teks1
19317
>>> len(set([word.lower() for word in text1]))
jumlah kata yang berhuruf kecil
17231
>>> len(set([word.lower() for word in text1 if word.isalpha()]))
jumlah kata yag beruruf kecil dan berbentuk huruf(bukan angka atau simbol)

No comments:

Post a Comment