Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
native_caps_lock solution in Uncategorized category for Caps Lock by Jon_Red
def caps_lock(t:str)->str:
return''.join(y.upper()if x%2 else y for x,y in enumerate(t.split('a')))
April 27, 2020