40 lines
1.1 KiB
Markdown
Raw Normal View History

---
id: 5e6a54ba58d3af90110a60a2
title: Introduction C
challengeType: 11
isRequired: true
---
## 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>
## Instructions
<section id='instructions'>
</section>
## Tests
<section id='tests'>
```yml
question:
text: 'What will print out after running these two lines of code:
<pre>x = 6<br>print(x)</pre>'
answers:
- 'x'
- '6'
- 'x = 6'
- '(x)'
solution: 2
```
</section>