Liste des activités

SNT:cours de seconde.

Lycée Pyrène: Monsieur David Poutriquet.

Activité automatismes: Les fonctions avec plusieurs variables en Python niveau 1.


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


							def maFonction(a,b):
								resultat=(a-6)+(-3*b-9)
								return resultat
							
							y=maFonction(-2,1)
							print(y)
							


Ta réponse :

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


							def maFonction(a,b):
								resultat=(-9*a+8)+(8*b-7)
								return resultat
							
							y=maFonction(3,5)
							print(y)
							


Ta réponse :

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


							def maFonction(a,b):
								resultat=(-5*a-8)+(7*b-5)
								return resultat
							
							y=maFonction(-5,-3)
							print(y)
							


Ta réponse :

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


							def maFonction(a,b):
								resultat=(2*a-2)+(-9*b+9)
								return resultat
							
							y=maFonction(0,5)
							print(y)
							


Ta réponse :

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


							def maFonction(a,b):
								resultat=(3*a+4)+(-9*b+1)
								return resultat
							
							y=maFonction(0,1)
							print(y)
							


Ta réponse :