in Python by
What is the output of the following code ?

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

a. 1
b. -1
c. 4
d. 3

2 Answers

0 votes
by

Answer: c
Explanation: Returns highest index.

0 votes
by

Answer: a
Explanation: Returns lowest index.

...