📌  相关文章
📜  将 f 函数应用于所有行 - Python 代码示例

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

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

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