Back to Freecodecamp

Strings in Python

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

latest258 B
Original Source

--questions--

--text--

What will the following code print?:

python
for n in "banana":
    print(n)

--answers--

<pre> n n </pre>
<pre> 0 1 </pre>
<pre> 0 1 2 3 4 5 </pre>
<pre> b a n a n a </pre>

--video-solution--

4