You are viewing a single comment's thread. Return to all comments →
import textwrap
def merge_the_tools(string, k):
list1=textwrap.wrap(string, k) for value in list1: str1="" for i in value: if i in str1: pass else: str1+=i print(str1)
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 →
import textwrap
def merge_the_tools(string, k):