Back to Freecodecamp

Intermediate Strings

curriculum/challenges/english/blocks/python-for-everybody/5e7b9f070b6c005b0e76f061.md

latest372 B
Original Source

--description--

More resources:

- <a href="https://www.youtube.com/watch?v=1bSqHot-KwE" target="_blank" rel="noopener noreferrer nofollow">Exercise</a>

--questions--

--text--

What is the value of i in the following code?

python
word = "bananana"
i = word.find("na")

--answers--

nanana


2


3


True


na

--video-solution--

2