import re
column_name = 'Good#Morning_Nagaraju90_Look@'
modified_column_name = re.sub(r'\W+', '_', column_name)
print(modified_column_name)
here's some sample code that demonstrates a merge operation on a Delta table using PySpark: from pyspark.sql import SparkSession # cre...
No comments:
Post a Comment