帮我使用Python实现如下要求:从下标 0 开始索引,找出单词 “welcome” 在字符串“Hello, welcome to my world.” 中出现的位置,找不到返回 -1
时间: 2023-06-12 07:02:14 浏览: 276
好的,以下是使用Python实现的代码:
```python
string = "Hello, welcome to my world."
word = "welcome"
if word in string:
position = string.index(word)
print(position)
else:
print(-1)
```
输出结果为:`7`,表示单词 "welcome" 在字符串中出现的位置是从下标 7 开始。如果找不到该单词,输出结果为 `-1`。
阅读全文