【pandas】一行づつ処理したい

絶対遅いだろうな。

x = pd.read_csv("hoge.csv",encoding="cp932")
for i in range(10):
    x1=x[i:i+1]
    print (x1)