When I tried this code on a python command line:
>>> a = "hello world"
>>> print (a.count(""))
I have as a result:
12
Someone know what is the meaning of this number?
Can I assume that it is the same as using the "len()" built-in function by subtracting a unit?