remove all odd row pandas

Solutions on MaxInterview for remove all odd row pandas by the best coders in the world

showing results for - "remove all odd row pandas"
Stefania
25 Jul 2016
1#to skip every other row
2
3df.iloc[::2]