import stacy

nlp = spacy.load('en_core_web_sm')

mystring = ""
doc = nlp(mystring)

filtered = [token.text for token in doc if not token.is_stop]
print("Sentence without stop words:")
print(" ".join(filtered))