I have lists (in python) which contains numbers who repeat then come other numbers then return again, like this:
[1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 3, 3, 3, 1]
I want to convert it to a new list where I avoid repetitiveness of numbers, like that:
['1*9', '2*2', '1*2', '3*3', '1*1']