After reading so many title, I couldn't solved the problem below. Does anyone can help me please ?
For instance, I have 2 list (list_I and list_II) which is interrelated with each other.
list_I = [123, 453, 444, 555, 123, 444]list_II = [A, A, B, C, A, B]
What I hope to get is:
New_list_I = [123, 453, 444, 555]New_list_II = [A , A, B, C]
I use these two list as a body part of e-mail. That's why I need 2 separate (but on the other hand interrelated) list.
I'm able to send an e-mail right now. But because of the duplication problem it doesn't work how I want to.
P.S : I hope I explained the problem well but any question please don't hesitate to ask me.