中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

python中怎么查找指定字符

小億
115
2023-12-07 20:47:37
欄目: 編程語言

在Python中,可以使用字符串的find()方法來查找指定字符。find()方法返回指定字符在字符串中第一次出現的位置,如果沒有找到則返回-1。

以下是使用find()方法查找指定字符的示例:

string = "Hello, World!"
character = "o"

index = string.find(character)

if index != -1:
    print(f"The character '{character}' was found at index {index}.")
else:
    print(f"The character '{character}' was not found in the string.")

輸出:

The character 'o' was found at index 4.

此外,還可以使用index()方法來查找指定字符。index()方法的用法與find()方法類似,但是如果指定字符不存在于字符串中,index()方法將會拋出一個ValueError異常。

string = "Hello, World!"
character = "o"

try:
    index = string.index(character)
    print(f"The character '{character}' was found at index {index}.")
except ValueError:
    print(f"The character '{character}' was not found in the string.")

輸出:

The character 'o' was found at index 4.

0
奉贤区| 鹤壁市| 米脂县| 徐汇区| 广平县| 西乡县| 祁门县| 陇南市| 招远市| 天祝| 锦屏县| 义马市| 仙居县| 陇川县| 朝阳县| 益阳市| 泸西县| 青铜峡市| 论坛| 凤山市| 崇文区| 鄂伦春自治旗| 莎车县| 迁西县| 彝良县| 汶川县| 高安市| 无为县| 英吉沙县| 工布江达县| 云龙县| 永顺县| 车致| 涟源市| 冀州市| 南江县| 昌图县| 弥渡县| 和政县| 南涧| 香港|