Can someone explain me the following :-
Suppose i have this String variable
pcalpha = 'abcdefghijklmnopqrstuvwxyz'
Writing this piece of code print(len(pcalpha)) will result in an output of an int which is equal to 26 which from my understanding means that the string has 26 characters in it.
Writing this other piece of code print(pcalpha.count("")) shall also give the same result according to the logic am following, but it is not. Can someone tell me why is it showing 27?