Pyton Count Jumlah karakter dalam satu kata

# Count number of characters in a string (word)
a = "some string"
print len(a)       # 11
Thankful Tiger