Report Bug
Qus :

What will be the output of the following Python code?

example = "helle"
print(example.rfind("e"))

Qus

निम्नलिखित पायथन कोड का आउटपुट क्या होगा?

example = "helle"
print(example.rfind("e"))


A. 1
B. 2
C. 4
D. 5


Solution
C. 4



Explanation

In Python, the rfind() method is a string method that is used to find the highest index of a substring in a given string. It is similar to the find() method, but instead of starting the search from the beginning of the string, it starts from the end and searches towards the beginning.




Report Bug