Comptez les caractères supérieurs dans une chaîne

def n_upper_chars(string):
    return sum([int(c.isupper()) for c in string])
Friendly Flatworm