📜  返回前 n 行 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:52.579000             🧑  作者: Mango

代码示例1
# Returns the first n rows

df.head()
# Row(age=2, name=u'Alicz')
df.head(1)
# [Row(age=2, name=u'Alice')]