Colonnes Drop Pyspark
df.drop("firstname") \
.printSchema()
""" import col is required """
df.drop(col("firstname")) \
.printSchema()
df.drop(df.firstname) \
.printSchema()
Super Shrew