My csv files looks like this:
idøageøname
1ø25øAshutosh
2ø21øShipra
3ø11øNimisha
4ø15øBhavya
5ø7øSammridha
I am not able to read this csv file(delimiter is ø). Pyspark command below is reading complete line as one column instead of 3.
df = spark.read.option("header", "true").option("sep", "ø").csv('file_path.csv')