Hi I have this function that maps and joins the elements of a list into a string. My question is that is there was a way to add quotation marks around all the elements that are originally strings in the list.
def blahblahblah(input):
code = "result = %s\n" % (", ".join(map(str, input)))
print code
x = ["dasdad", 131]
blahblahblah(x)
//normal output ------result = dasdad, 131
//desired output ------result = 'dasdad', 131