Answers for "remove all odd row pandas"

0

remove all odd row pandas

#to skip every other row

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

Python Answers by Framework

Browse Popular Code Answers by Language