fix: review and clean up a few things in this section

This commit is contained in:
moT01
2020-04-22 14:56:26 -05:00
committed by Mrugesh Mohapatra
parent 36cf2b1ca5
commit d9d5a41f39
5 changed files with 15 additions and 29 deletions

View File

@ -16,13 +16,13 @@ videoId: gz_IfIsZQtc
```yml ```yml
question: question:
text: 'Which code is indented correctly to print "Yes" if 0 = x and y = 10?' text: 'Which code is indented correctly to print "Yes" if x = 0 and y = 10?'
answers: answers:
- '<pre>if 0 = x:<br>if y = 10:<br>print("Yes.")</pre>' - '<pre>if 0 == x:<br>if y == 10:<br>print("Yes")</pre>'
- '<pre>if 0 = x:<br> if y = 10:<br> print("Yes.")</pre>' - '<pre>if 0 == x:<br> if y == 10:<br> print("Yes")</pre>'
- '<pre>if 0 = x:<br>if y = 10:<br> print("Yes.")</pre>' - '<pre>if 0 == x:<br>if y == 10:<br> print("Yes")</pre>'
- '<pre>if 0 = x:<br> if y = 10:<br> print("Yes.")</pre>' - '<pre>if 0 == x:<br> if y == 10:<br> print("Yes")</pre>'
solution: 3 solution: 4
``` ```
</section> </section>

View File

@ -21,9 +21,9 @@ question:
x = x + 1<br> x = x + 1<br>
print(x)</pre>' print(x)</pre>'
answers: answers:
- 'College students.' - 'x'
- 'People who want to become software developers.' - 'x + 1'
- 'Everyone.' - '44'
solution: 3 solution: 3
``` ```

View File

@ -8,13 +8,6 @@ videoId: H6qtjRTfSog
## Description ## Description
<section id='description'> <section id='description'>
In this challenge you must analyze demographic data using Pandas. You are given a dataset of demographic data that was extracted from the 1994 Census database.
You can access <a href='https://repl.it/@freeCodeCamp/fcc-demographic-data-analyzer' target='_blank'>the full project description and starter code on repl.it</a>.
After going to that link, fork the project. Once you complete the project based on the instructions in 'README.md', submit your project link below.
We are still developing the interactive instructional part of the data analysis with Python curriculum. For now, you will have to use other resources to learn how to pass this challenge.
</section> </section>
## Instructions ## Instructions
@ -27,12 +20,12 @@ We are still developing the interactive instructional part of the data analysis
```yml ```yml
question: question:
text: 'Who should learn to program?' text: 'Where are your programs stored when they are running?'
answers: answers:
- 'College students.' - 'Hard Drive.'
- 'People who want to become software developers.' - 'Memory.'
- 'Everyone.' - 'Central Processing Unit.'
solution: 3 solution: 2
``` ```

View File

@ -8,13 +8,6 @@ videoId: 0QeGbZNS_bY
## Description ## Description
<section id='description'> <section id='description'>
In this challenge you must analyze demographic data using Pandas. You are given a dataset of demographic data that was extracted from the 1994 Census database.
You can access <a href='https://repl.it/@freeCodeCamp/fcc-demographic-data-analyzer' target='_blank'>the full project description and starter code on repl.it</a>.
After going to that link, fork the project. Once you complete the project based on the instructions in 'README.md', submit your project link below.
We are still developing the interactive instructional part of the data analysis with Python curriculum. For now, you will have to use other resources to learn how to pass this challenge.
</section> </section>
## Instructions ## Instructions

View File

@ -16,7 +16,7 @@ videoId: MQ5z4bdF92U
```yml ```yml
question: question:
text: 'What SQL command would you use to retrieve alL users that have the email address quincy@freecodecamp.org?' text: 'What SQL command would you use to retrieve all users that have the email address quincy@freecodecamp.org?'
answers: answers:
- 'SELECT Users WHERE email="quincy@freecodecamp.org"' - 'SELECT Users WHERE email="quincy@freecodecamp.org"'
- 'SELECT Users WHERE email IS "quincy@freecodecamp.org"' - 'SELECT Users WHERE email IS "quincy@freecodecamp.org"'