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+3)+(-2*b+6)
								return resultat
							
							y=maFonction(4,-4)
							print(y)
							


Ta réponse :

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


							def maFonction(a,b):
								resultat=(3*a+2)+(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=(-3*a-4)+(-9*b+5)
								return resultat
							
							y=maFonction(2,0)
							print(y)
							


Ta réponse :

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


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


Ta réponse :

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


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


Ta réponse :