You are viewing a single comment's thread. Return to all comments →
import textwrap`` def merge_the_tools(string, k): # your code goes here chunks = textwrap.wrap(string, k) for a in chunks: print(''.join(list(set(a))))
Seems like cookies are disabled on this browser, please enable them to open this website
Merge the Tools!
You are viewing a single comment's thread. Return to all comments →