Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
split on 'a' and capitalize every other in list solution in Clear category for Caps Lock by mimrit7
def caps_lock(text: str) -> str:
# your code here
split_text = text.split('a')
for item in range(1, len(split_text), 2):
split_text[item] = split_text[item].upper()
return ''.join(split_text)
if __name__ == '__main__':
print("Example:")
print(caps_lock("Why are you asking me that?"))
# These "asserts" are used for self-checking and not for an auto-testing
assert caps_lock("Why are you asking me that?") == "Why RE YOU sking me thT?"
assert caps_lock("Always wanted to visit Zambia.") == "AlwYS Wnted to visit ZMBI."
print("Coding complete? Click 'Check' to earn cool rewards!")
April 23, 2021