Report Bug
Qus :

What will be the output of the following Python code?

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

Qus

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

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


A. -1
B. 4
C. 3
D. 1


Solution
B. 4



Explanation





Report Bug