Crie uma nova coluna com o primeiro caractere de String Pyspark

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