def filter_text(text):words = text.split()filtered_words = [word for word in words if word not in ['очень', 'вычислительная']]filtered_text = ' '.join(filtered_words)return filtered_text
original_text = "я очень хорошая вычислительная машина"filtered_text = filter_text(original_text)print(filtered_text) # Output: "я хорошая машина"
def filter_text(text):
words = text.split()
filtered_words = [word for word in words if word not in ['очень', 'вычислительная']]
filtered_text = ' '.join(filtered_words)
return filtered_text
original_text = "я очень хорошая вычислительная машина"
filtered_text = filter_text(original_text)
print(filtered_text) # Output: "я хорошая машина"