using-len-for-text-but-discarding-spaces-in-the-count code example
Example: using-len-for-text-but-discarding-spaces-in-the-count
>>> full_name = "John DOE"
>>> len(full_name) - full_name.count(' ')
7
>>> full_name = "John DOE"
>>> len(full_name) - full_name.count(' ')
7