Applique la fonction F à toutes les lignes
# Applies the f function to all Row
def f(person):
print(person.name)
df.foreach(f)
Ethercourt.ml
# Applies the f function to all Row
def f(person):
print(person.name)
df.foreach(f)