亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
同仁县| 岳池县| 邹平县| 平湖市| 德化县| 吉木乃县| 岚皋县| 余姚市| 通道| 乡宁县| 京山县| 保康县| 莫力| 鄂伦春自治旗| 丹凤县| 同仁县| 西畴县| 华阴市| 同心县| 巩留县| 石阡县| 西昌市| 古田县| 轮台县| 仁怀市| 济源市| 扬州市| 乌兰浩特市| 阜新市| 泰州市| 安化县| 静海县| 原平市| 伊川县| 昌吉市| 奉化市| 南乐县| 海伦市| 神池县| 团风县| 嵊州市|