Python Convert a list of list to list of tuples -
this question has answer here:
i want convert list of list list of tuples using python. want without iterating through nested list increasing execution time of script. there way can workout me?
thanks in advance
converted_list = [tuple(i) in nested_list]
Comments
Post a Comment