Merge the Tools!

  • + 0 comments
    def merge_the_tools(string, k):
        # your code goes here
        import textwrap
        if len(string)%k == 0:
            listed = textwrap.wrap(string,k)
        for i in range(len(listed)):
            print("".join(set(listed[i])))