Menerapkan fungsi F ke semua baris
# 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)