admin 管理员组

文章数量: 887021


2023年12月18日发(作者:web前端开发自我介绍)

python中find用法

在Python中,`find()`是字符串对象的一个方法,用于查找子字符串在字符串中的位置。它的用法如下:

python

(sub[, start[, end]])

参数说明:

- `sub`:要查找的子字符串。

- `start`(可选):查找的起始位置,默认为0。

- `end`(可选):查找的结束位置,默认为字符串的长度。

返回值:

- 如果找到了子字符串,则返回子字符串在字符串中的起始位置(索引值),否则返回-1。

示例:

python

str1 = "Hello, world!"

print(("world")) # 输出:7

str2 = "Hello, world!"

print(("Python")) # 输出:-1

str3 = "Hello, world!"

print(("o")) # 输出:4

str4 = "Hello, world!"

print(("o", 5, 10)) # 输出:7

在以上示例中,`find()`方法分别在字符串`str1`、`str2`、`str3`和`str4`中查找子字符串。其中,`str1`和`str3`中都包含了子字符串"world"和"o",所以返回了子字符串在字符串中的起始位置。而`str2`中不包含子字符串"Python",所以返回了-1。在`str4`中,我们通过指定查找的起始位置和结束位置,限制了查找的范围,最终返回了子字符串"o"在位置7的索引值。


本文标签: 字符串 位置 查找 起始