Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Uppercase odd-indexed string solution in Clear category for Caps Lock by tejase13
import re
def caps_lock(text: str) -> str:
'''
Steps:
1. Split the text with delimiter="a" into a list of strings
2. Convert the odd-indexed string in the list into uppercase
3. Join the list of strings
'''
answer = ""
text_list = text.split("a")
for i in range(1, len(text_list), 2): text_list[i] = text_list[i].upper()
return "".join(text_list)
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!")
June 20, 2021