您的位置:

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

编写一个 Python 程序,通过一个实际例子来查找字符串中的字符的最后一次出现。这个 python 程序允许用户输入字符串和字符。

# Python Program to find Last Occurrence of a Character in a String

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

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

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

首先,我们使用 For Loop 来迭代一个字符串中的每个字符。其中,我们使用 If 语句来检查 str1 字符串中的任何字符是否等于给定的字符。如果为真,则标志= i.

接下来,我们使用 If Else 语句检查标志值是否等于-1 或不等于 0。

string = hello world ch = l flag =-1

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

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

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

对剩余的迭代做同样的事情。这里,条件(标志== -1)为假。所以,在执行的 else 块内打印。

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

这个 Python 上一次出现的一个人物程序和上面一样。然而,我们只是将 For 循环替换为 While 循环。

# Python Program to find Last Occurrence of a Character in a String

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

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

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

Python 字符串输出中的字符的最后一次出现

Please enter your own String : tutorialgateway
Please enter your own Character : t
The Last Occurrence of  t  is Found at Position  11

Python 程序查找字符串中的最后一次出现示例 3

字符串中的字符的最后一次 Python 出现与第一个示例相同。但是,这一次,我们使用了函数的概念来分离 python 程序的逻辑。

# Python Program to find Last Occurrence of a Character in a String

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

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

flag = last_Occurrence(ch, str1)

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

Python 字符串输出中的字符的最后一次出现

Please enter your own String : hello
Please enter your own Character : m
Sorry! We haven't found the Search Character in this string 
>>> 
Please enter your own String : python programs
Please enter your own Character : p
The Last Occurrence of  p  is Found at Position  8
>>> 
Python 程序:寻找字符串中的字符的最后一次出现

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

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

2022-07-24
stringlastindexof:详解字符串的最后一次出现

2023-05-19
Python实现寻找字符串结尾的方法

2023-05-13
Python 程序:删除字符串中字符的第一次出现

2022-07-24
Python rindex:字符串中查找特定字符最后出现的位

2023-05-13
Python 程序:查找字符串中的字符的所有出现

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

2022-07-24
Python 程序:寻找数字的最后一位

2022-07-24
Python中字符串rfind的用法和示例

2023-05-13
到python中的字符,python输出特定字符后的字符

2022-11-21
Python 程序:查找字符串中的单词和字符数

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

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

2023-05-13
Python rfind实现查找字符串最后一个匹配项

2023-05-13
Python 程序:寻找数组中最小数字

2022-07-24
java查找字符串,java查找字符串中字符出现的次数

2022-12-02
python找字符从后向前(python字符串字符向后移动)

2022-11-11
Python 程序:字符示例

2022-07-24
python中字符串的一些用法(python中字符串的作用)

2022-11-09