diff --git a/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/python-introduction.english.md b/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/python-introduction.english.md index 3de5ffbc3f..42bf23b11c 100644 --- a/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/python-introduction.english.md +++ b/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/python-introduction.english.md @@ -14,13 +14,13 @@ videoId: PrQV9JkLhb4 ```yml question: - text: Question + text: 'How do we define blocks of code in the body of functions in Python?' answers: - - one - - two - - three - solution: 3 + - 'We use a set of curly braces, one on either side of each new block of our code.' + - 'We use indentation, usually right-aligned 4 spaces.' + - 'We do not denote blocks of code.' + - 'We could use curly braces or indentation to denote blocks of code.' + solution: 2 ``` -