Gow, um einen Brief in einem Wort in Python zu finden
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)