Python - Сколько букв столица в строке

def n_upper_chars(string):
    return sum(map(str.isupper, string))
Lazy Lizard