Back to Freecodecamp

Strings and Lists

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

latest441 B
Original Source

--description--

More resources:

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

--questions--

--text--

What does n equal in this code?

python
words = 'His e-mail is [email protected]'
pieces = words.split()
parts = pieces[3].split('-')
n = parts[1]

--answers--

mail


q


lar


[email protected]

--video-solution--

4