Learn by fixing tests
© 2025-2026 Alex Cole. All Rights Reserved.
Spark Koans is an independent community tool.
Learn how to create and read Delta tables. Replace ___ with the correct code.
___
_reset_delta_tables() # Clean slate data = [("Alice", 34, "Engineering"), ("Bob", 45, "Sales"), ("Charlie", 29, "Engineering")] df = spark.createDataFrame(data, ["name", "age", "department"])
Output will appear here...