Que fait la fonction Python suivante ?
\verb/ def func(x): /
\verb/ return x**3 /
Que fait la fonction Python suivante ?
\verb/ def func(a, b, x): /
\verb/ return a*x + b /
Que fait la fonction Python suivante ?
\verb/ def func(a, b): /
\verb# return -b/a #
Que font les instructions Python suivantes ?
\verb/ def hello(prenom="Isabelle"): /
\verb/ str = "Hello " + prenom /
\verb/ print(str) /
\verb/ hello("Pierre")/
Que font les instructions Python suivantes ?
\verb/ def hello(prenom="Isabelle"): /
\verb/ str = "Hello " + prenom /
\verb/ return str /
\verb/ hello(name="Antoine")/