हम एक प्रोग्राम का उपयोग एक वाक्य में तारक वाले शब्द को सेंसर करने के लिए एक वाक्य से अपशब्दों आदि को सेंसर करने के लिए कर सकते हैं। उदाहरण के लिए,
अगर हमारे पास एक वाक्य है,
"Go feed all the ducks in the lake"
और एक शब्द जिसे हम तारक से बदलना चाहते हैं, मान लीजिए बतख। तब हमारा अंतिम वाक्य ऐसा दिखेगा -
"Go feed all the ***** in the lake"
हम इस कार्यक्षमता को प्राप्त करने के लिए सीधे अजगर से बदलें फ़ंक्शन का उपयोग कर सकते हैं। उदाहरण के लिए,
उदाहरण
def replaceWithAsterisk(sent, word): # Use the replace function to find and replace the word with # same number of asterisks as the length of the word. return sent.replace(word, "*" * len(word)) sent = "Go feed all the ducks in the lake" censored_sent = replaceWithAsterisk(sent, "ducks") print(censored_sent)
आउटपुट
यह आउटपुट देगा -
Go feed all the ***** in the lake