Files
freeCodeCamp/curriculum/challenges/portuguese/07-scientific-computing-with-python/python-for-everybody/build-your-own-functions.md

624 B

id, title, challengeType, videoId, dashedName
id title challengeType videoId dashedName
5e7b9f060b6c005b0e76f05b Crie suas próprias funções 11 nLDychdBwUg build-your-own-functions

--description--

Mais recursos:

- Exercício

--question--

--text--

Qual será a impressão do seguinte programa em Python?:

def fred():
    print("Zap")
def jane():
    print("ABC")

jane()
fred()
jane()

--answers--

Zap
ABC
jane
fred
jane

Zap
ABC
Zap

ABC
Zap
jane

ABC
Zap
ABC

Zap
Zap
Zap

--video-solution--

4