IndentationError expected an indented block

0 votes

this is my code 

stemming = PorterStemmer()

corpus = []

for i in range (0,len(df)):

s1 = re.sub('[^a-zA-Z]',repl = ' ',string = df['Email'][i])

s1.lower()

s1 = s1.split()

s1 = [stemming.stem(word) for word in s1 if word not in set(stopwords.words('english'))]

s1 = ' '.join(s1)

corpus.append(s1)

corpus[50]

 I got the error in s1 = re.sub('[^a-zA-Z]',repl = ' ',string = df['Email'][i])

how can I fix it ?

Jun 8, 2022 in Python by anonymous

edited Mar 4 16 views

No answer to this question. Be the first to respond.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP