Créer une nouvelle colonne avec le premier caractère de String Pyspark

df = df.withColumn("first_n_char", df.colname.substr(1))
Sooi Versavel