Pyton Count Nombre de caractère en un mot

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