how to count charecters in python 3 code example
Example: pyton count number of character in a word
# Count number of characters in a string (word)
a = "some string"
print len(a) # 11
# Count number of characters in a string (word)
a = "some string"
print len(a) # 11