I have a list of integers, i want to convert them into comma separated integers, how can i actually achieve that
The result should have comma separated integers, not comma separated string example
def evaluate(self, list_of_integers):print(list_of_integers) # [220.0, 112.9] # i want to achieve something like belowprint(comma_separated_integers) # 220.0, 112.9