Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
With small comments solution in Clear category for Between Markers (simplified) by steelhawk.rus
def between_markers(text: str, begin: str, end: str) -> str:
"""
returns substring between two given markers
"""
# your code here
begin_of_substring = text.find(begin) #Finding the first marker in the "text" variable
end_of_substring = text.find(end) #Finding the last marker in the "text" variable
return text[begin_of_substring + 1:end_of_substring] #Get the substring
if __name__ == '__main__':
print('Example:')
print(between_markers('What is >apple<', '>', '<'))
# These "asserts" are used for self-checking and not for testing
assert between_markers('What is >apple<', '>', '<') == "apple"
assert between_markers('What is [apple]', '[', ']') == "apple"
assert between_markers('What is ><', '>', '<') == ""
assert between_markers('>apple<', '>', '<') == "apple"
print('Wow, you are doing pretty good. Time to check it!')
April 15, 2019
Comments: