Создайте новый столбец с первым символом String Pyspark

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