您的位置:

Python 程序:寻找字符串中的字符的第一次出现

写一个 Python 程序,用一个实际的例子找到字符串中的字符的第一次出现。

python 程序查找字符串中的字符的第一次出现示例 1

这个 python 程序允许用户输入字符串和字符。

请参考弦文章了解蟒弦的一切。

# Python Program to check First Occurrence of a Character in a String

string = input("Please enter your own String : ")
char = input("Please enter your own Character : ")

flag = 0
for i in range(len(string)):
    if(string[i] == char):
        flag = 1
        break

if(flag == 0):
    print("Sorry! We haven't found the Search Character in this string ")
else:
    print("The first Occurrence of ", char, " is Found at Position " , i + 1)

Python 字符串输出中字符的第一次出现

Please enter your own String : hello world
Please enter your own Character : l
The first Occurrence of  l  is Found at Position  3

这里,我们使用 For Loop 来迭代字符串中的每个字符。在 For 循环中,我们使用 If 语句来检查 str1 字符串中的任何字符是否等于字符 ch。如果为真,则标志= 1,并执行中断语句。

string = hello world ch = l flag = 0

对于循环第一次迭代:对于范围(11)中的 I,如果(字符串[i] == char) 如果(h = = l)–条件为假。

第二次迭代:如果(e = = l)–条件为假,范围(11) 中的 1。

第三次迭代:对于范围(11)中的 2,如果(str[2] == ch) = >如果(l = = l)–条件为真。

标志= 1,中断语句退出循环。接下来,我们使用 If Else 语句检查标志值是否等于 0。这里,条件为假。所以,在执行的 else 块内打印。

Python 程序查找字符串中的字符的第一次出现示例 2

这个 Python 字符的第一次出现程序与上面的相同。然而,我们只是将 For 循环替换为 While 循环。

# Python Program to check First Occurrence of a Character in a String

string = input("Please enter your own String : ")
char = input("Please enter your own Character : ")
i = 0
flag = 0

while(i < len(string)):
    if(string[i] == char):
        flag = 1
        break
    i = i + 1

if(flag == 0):
    print("Sorry! We haven't found the Search Character in this string ")
else:
    print("The first Occurrence of ", char, " is Found at Position " , i + 1)

Python 字符串输出中字符的第一次出现

Please enter your own String : python programming
Please enter your own Character : o
The first Occurrence of  o  is Found at Position  5

获取字符串中字符的第一次出现的 Python 程序示例 3

这个 python 程序查找字符串中的字符的第一次出现与第一个例子相同。然而,这一次,我们使用了函数概念来分离逻辑。

# Python Program to check First Occurrence of a Character in a String

def first_Occurrence(char, string):
    for i in range(len(string)):
        if(string[i] == char):
            return i
    return -1

str1 = input("Please enter your own String : ")
ch = input("Please enter your own Character : ")

flag =  first_Occurrence(ch, str1)
if(flag == -1):
    print("Sorry! We haven't found the Search Character in this string ")
else:
    print("The first Occurrence of ", ch, " is Found at Position " , flag + 1)

Python 程序:寻找字符串中的字符的第一次出现

2022-07-24
Python 程序:寻找字符串中的字符的最后一次出现

2022-07-24
Python 程序:删除字符串中字符的第一次出现

2022-07-24
Python 程序:删除字符串中字符的最后一次出现

2022-07-24
Python 程序:查找字符串中的字符的所有出现

2022-07-24
Python 程序:计算字符串中的字符出现次数

2022-07-24
Python实现寻找字符串结尾的方法

2023-05-13
Python中字符串rfind的用法和示例

2023-05-13
stringlastindexof:详解字符串的最后一次出现

2023-05-19
Python count函数用法:统计字符串中子字符串出现的

2023-05-13
Python 程序:查找字符串中的单词和字符数

如何计算 python 字符串中的单词和字符? 在这个字符串 python 程序中,我们需要计算一个字符串中的字符和单词数。让我们检查一个例子“我爱我的国家”在这个字符串中,我们的字数为 4,字符数为

2023-12-08
python找到字符串中所有的某个字符,python找到字符

2022-11-28
java查找字符串,java查找字符串中字符出现的次数

2022-12-02
python中字符串的一些用法(python中字符串的作用)

2022-11-09
c语言在文件中寻找字符串,c语言包含字符串寻找字符串

2023-01-05
Python rindex:字符串中查找特定字符最后出现的位

2023-05-13
Python 程序:字符示例

2022-07-24
Python 程序:打印两个字符串中出现的字母

在这个简单的 python 程序中,我们需要打印两个字符串中的哪些字母。这是一个基于数字的 python 程序。 为了更好地理解这个例子,我们总是建议您学习下面列出的 Python 编程的基本主题:

2023-12-08
Python中的字符串查找方法

2023-05-12
Python 程序:寻找数字的第一位

2022-07-24