📜  将 f 函数应用于此 DataFrame 的所有行 - Python 代码示例

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

代码示例1
# Applies the f function to all Row of this DataFrame

def f(person):
  print(person.name)
df.foreach(f)