Files
freeCodeCamp/curriculum/challenges/chinese/07-scientific-computing-with-python/python-for-everybody/python-functions.md
Randell Dawson 94f0cf0ef8 chore(learn): Remove remaining isHidden keys from frontmatter (English and Chinese challenges) (#39809)
* fix: remove isHidden key from tool template

* fix: removed isHidden key from English challenges

* fix: remove isHidden key from Chinese challenges
2020-10-08 14:18:47 +02:00

677 B

id, challengeType, videoId
id challengeType videoId
5e7b9f060b6c005b0e76f05a 11 3JGF-n3tDPU

Description

Tests

question:
  text: |
    What is the purpose of the "def" keyword in Python?

  answers:
    - |
        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.
  solution: 4