Answers for "pandas remove all odd rows"

0

remove all odd row pandas

#to skip every other row

df.iloc[::2]
Posted by: Guest on January-14-2021

Code answers related to "pandas remove all odd rows"

Python Answers by Framework

Browse Popular Code Answers by Language