def riddle(word): return len(word[:-1])
def removeEverySecond(string): return string[::2]
Loading collection data...