string_name.join(iterable) # create a sets = {'a','b','c','d'} print("Initially") print("The datatype of s:"+ str(type(s))) print("Contents of s:", s)# convert Set to StringS =', '.join(s) print("The datatype of s:"+ str(type(S))) print("Contents of s:", S...
# create a string strstring ="geeks"print("Initially") print("The datatype of string:"+ str(type(string))) print("Contents of string:"+ string)# convert String to Setstring = set(string) print("\nAfter the conversion") print("The datatype of string:"+ str(type(string))) print("...