GOW, чтобы найти букву одним словом в Python
txt = "Hello, welcome to my world."
x = txt.find("welcome")
print(x)
data master tarun
txt = "Hello, welcome to my world."
x = txt.find("welcome")
print(x)