create a script to translate the text to english in pyspark code example
Example: translate sentences in python
# First install translate with pip in cmd
pip install translate
# Code
from translate import Translator
translator= Translator(from_lang="german",to_lang="spanish")
translation = translator.translate("Guten Morgen")
print(translation)