How do I filter only numbers that contains decimal greater than .00 in python/pandas?
df = pd.DataFrame({
'Lineitem price': [4.00, 5.65, 1.22, 8.00, 10.78, 7.00, 2.85]
})
Lineitem price
0 4.00
1 5.65
2 1.22
3 8.00
4 10.78
5 7.00
6 2.85
Basically I would like to keep only the numbers 5.65, 1.22, 10.78, and 2.85. This would be for a much larger DataFrame, so this is only a sample.