2020-04-06 14:49:56 -04:00
|
|
|
---
|
|
|
|
id: 5e7b9f060b6c005b0e76f05a
|
2020-04-21 23:37:02 -05:00
|
|
|
title: Python Functions
|
2020-04-06 14:49:56 -04:00
|
|
|
challengeType: 11
|
2020-05-25 19:15:32 +05:30
|
|
|
isHidden: true
|
2020-04-06 14:49:56 -04:00
|
|
|
isRequired: true
|
|
|
|
videoId: 3JGF-n3tDPU
|
|
|
|
---
|
|
|
|
|
|
|
|
## Description
|
|
|
|
<section id='description'>
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Tests
|
|
|
|
<section id='tests'>
|
|
|
|
|
|
|
|
```yml
|
|
|
|
question:
|
2020-05-31 13:57:09 +01:00
|
|
|
text: |
|
|
|
|
What is the purpose of the "def" keyword in Python?
|
|
|
|
|
2020-04-06 14:49:56 -04:00
|
|
|
answers:
|
2020-05-31 13:57:09 +01:00
|
|
|
- |
|
|
|
|
It is slang that means "The following code is really cool."
|
|
|
|
- |
|
|
|
|
It indicates the start of a function.
|
|
|
|
- |
|
|
|
|
It indicates that the following indented section of code is to be stored for later.
|
|
|
|
- |
|
|
|
|
It indicates the start of a function, and the following indented section of code is to be stored for later.
|
|
|
|
- |
|
|
|
|
None of the above.
|
2020-04-06 14:49:56 -04:00
|
|
|
solution: 4
|
|
|
|
```
|
|
|
|
|
|
|
|
</section>
|