Programmation:


Question 1

Qu'affiche le programme python suivant ?
def f(x):
	return 2*x+1

u=1
for i in range(3):
	u=f(u)
print(u)