Revision 373263623764 () - Diff

Link to this snippet: https://friendpaste.com/2jNZuXOGXzTWRqUwqV7d1a
Embed:
1
2
3
4
5
6
7
8
9
# ce qui marche
if (a % 2 == 0): print "a est pair"
else: print 'a est impair'

# ce qui est recommandé
if (a % 2 == 0):
print "a est pair"
else:
print "a est impair"