Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
from hint solution in Clear category for Length of the String by oduvan
def string_length(text: str) -> int:
# your code here
return len(text)
print("Example:")
print(string_length("Hi"))
assert string_length("hi") == 2
assert string_length("CheckiO") == 7
assert string_length("") == 0
print("The first mission is done! Click 'Check' to earn cool rewards!")
Feb. 19, 2022