Programmation: If: structure conditionnelle


Question 1

Qu'affiche le programme python suivant ?
x=1
if (3*x-6<0):
	r=-1
else:
	r=1
print(r)