0
Can you check for a specific word in batch of other letters (in Python) eg for the word 'hello' in ' "sojehkhellodjkdfe"'.......
2 Antworten
+ 1
You can use the "in" operator:
Example:
"x" in "text"
+ 1
yes like
print("hello" in "ghdvgcdvhellohdhdgh")
try this Derrick
remember me