I am trying to count the number of occurrences in a string in python. I would like to take a binary input, say '001101'. Then count the number of 1s, 0s, 11s, 00s etc.
I have tried to implement this by using count, but this will output that there are 3 1s, when i only want it to output 1 1, and 1 11s and for it to not count them individually, unless they are on their own.
I have also tried to implement this with find, but i am having the same problem.
Any help would be appreciated, thanks.
1's, the number of11's, the number of111's, etc..?1s for example, beforecounting them, pad them with0s as in010plus the edge cases10and01for the beginnig and end.