Python Script: Error loading Python script

Hi,
I am trying to run a python script file i keep getting an error
here an image of my flow chart

from wordcloud import WordCloud, STOPWORDS

comment_words = ’ ’
stopwords = set(STOPWORDS)

f=open(‘test.csv’,‘r+’)
exceldata=f.read().replace(‘\n’,‘’)

wordcloud = WordCloud(width = 800, height = 800,
background_color=‘white’,
stopwords=stopwords,
min_font_size = 5)
wordcloud.generate(exceldata)

wordcloud.to_file(‘Image.png’)

here the code for the script

@alvin_chyn

What Python version are you running?

I’m using python 22.7

image
if this is any help @SenzoD