Hi, I am new to python. I have a item list looks like this:
rank_item = [
(9, 0.99999999745996648),
(8, 0.99999996796861101),
(1, 0.99999996796861101),
(10, 0.0) ]
The question is how do i remove the item list with value 0.0 and return
[(9, 0.99999999745996648), (8, 0.99999996796861101), (1, 0.99999996796861101)]