feat(learn): Denoting Code Blocks in Python (#38723)

This commit is contained in:
Ray Johnson
2020-05-12 04:36:29 -05:00
committed by Mrugesh Mohapatra
parent add7feb7a5
commit 1284406ba2

View File

@ -14,13 +14,13 @@ videoId: PrQV9JkLhb4
```yml ```yml
question: question:
text: Question text: 'How do we define blocks of code in the body of functions in Python?'
answers: answers:
- one - 'We use a set of curly braces, one on either side of each new block of our code.'
- two - 'We use indentation, usually right-aligned 4 spaces.'
- three - 'We do not denote blocks of code.'
solution: 3 - 'We could use curly braces or indentation to denote blocks of code.'
solution: 2
``` ```
</section> </section>