Liste des activités

SNT:cours de seconde.

Lycée Pyrène: Monsieur David Poutriquet.

Activité automatismes: Les fonctions en Python niveau 1.


Voici, un algorithme en Python , qu'affiche cet algorithme?


							def maFonction(a):
								resultat=3*a+3
								return resultat
							
							y=maFonction(3)
							print(y)
							


Ta réponse :

Voici, un algorithme en Python , qu'affiche cet algorithme?


							def maFonction(a):
								resultat=-9*a-2
								return resultat
							
							y=maFonction(-2)
							print(y)
							


Ta réponse :

Voici, un algorithme en Python , qu'affiche cet algorithme?


							def maFonction(a):
								resultat=-4*a-2
								return resultat
							
							y=maFonction(5)
							print(y)
							


Ta réponse :

Voici, un algorithme en Python , qu'affiche cet algorithme?


							def maFonction(a):
								resultat=9*a+2
								return resultat
							
							y=maFonction(-4)
							print(y)
							


Ta réponse :

Voici, un algorithme en Python , qu'affiche cet algorithme?


							def maFonction(a):
								resultat=6*a+1
								return resultat
							
							y=maFonction(4)
							print(y)
							


Ta réponse :