Wendet die F -Funktion auf alle Zeile an
# 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)