import pandas as pd
# Örnek bir veri çerçevesi oluşturalım
df = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6], 'C': [7, 8, 9]})
# select the first line
ilk_satir = df.iloc[0]
print(ilk_satir)
çıktı =>
A 1
B 4
C 7
因此,这是我们使用我们的pandaskã¼tirüphane
的数据中的ILOC函数。