Sprawdź, ile razy podłoże pojawia się w ciągu

a = '128532012'
print(a.count('0'))
#Prints: 1

print(a.count('12'))
#Prints: 2
Programer boi