2020-04-06 14:49:56 -04:00
|
|
|
---
|
|
|
|
id: 5e7b9f090b6c005b0e76f066
|
2020-04-21 23:37:02 -05:00
|
|
|
title: Strings and Lists
|
2020-04-06 14:49:56 -04:00
|
|
|
challengeType: 11
|
|
|
|
videoId: lxcFa7ldCi0
|
|
|
|
---
|
|
|
|
|
|
|
|
## Description
|
|
|
|
<section id='description'>
|
|
|
|
More resources:
|
|
|
|
- <a href="https://www.youtube.com/watch?v=-9TfJF2dwHI" target='_blank'>Exercise</a>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Tests
|
|
|
|
<section id='tests'>
|
|
|
|
|
|
|
|
```yml
|
|
|
|
question:
|
2020-05-31 13:57:09 +01:00
|
|
|
text: |
|
|
|
|
What does n equal in this code?
|
|
|
|
```python
|
|
|
|
words = 'His e-mail is q-lar@freecodecamp.org'
|
|
|
|
pieces = words.split()
|
|
|
|
parts = pieces[3].split('-')
|
|
|
|
n = parts[1]
|
|
|
|
```
|
2020-04-06 14:49:56 -04:00
|
|
|
answers:
|
2020-05-31 13:57:09 +01:00
|
|
|
- |
|
|
|
|
mail
|
|
|
|
- |
|
|
|
|
q
|
|
|
|
- |
|
|
|
|
lar
|
|
|
|
- |
|
|
|
|
lar@freecodecamp.org
|
2020-04-06 14:49:56 -04:00
|
|
|
solution: 4
|
|
|
|
```
|
|
|
|
|
|
|
|
</section>
|