First solution in Speedy category for All Upper II by FromVault13
def is_all_upper(t): return t.lower() != t.upper() and t.upper() == t
May 11, 2020