Files
freeCodeCamp/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/introduction-elements-of-python.english.md
Oliver Eyton-Williams bd68b70f3d Feat: hide blocks not challenges (#39504)
* fix: remove isHidden flag from frontmatter

* fix: add isUpcomingChange

Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com>

* feat: hide blocks not challenges

Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com>

Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com>
2020-09-03 15:07:40 -07:00

37 lines
456 B
Markdown

---
id: 5e6a54c358d3af90110a60a3
title: 'Introduction: Elements of Python'
challengeType: 11
isRequired: true
videoId: aRY_xjL35v0
---
## Description
<section id='description'>
</section>
## Tests
<section id='tests'>
```yml
question:
text: |
What will the following program print out:
```python
x = 43
x = x + 1
print(x)
```
answers:
- |
x
- |
x + 1
- |
44
solution: 3
```
</section>