I am new in Python and trying to run the code below in VS. But I am keep getting SyntaxError: invalid syntax
. How to get around with this ?
from pyspark.sql import SparkSession
spark=SparkSession.builder.appName('Dataframe').getOrCreate()
spark
3