I am very new to python, and just have a very simple question. I have a list which is replaced as:
x = [array([100., 100.]),
array([119, 119]),
array([143, 143]),
array([171, 171]),
array([204, 204])]
I want to create a list
b = [100, 119, 143, 171, 204]
I tried flatten
but couldn't remove the same value and the 'array'. What should I do?