Administrators, autoreview, Vérificateurs d’utilisateurs, checkuser-log, editor, reviewer, usersnoop
3 321
modifications
m (Annulation des modifications 1622 de Lol (discussion)) |
|||
Ligne 116 : | Ligne 116 : | ||
Fichier:IMG_5906.JPG|[[Utilisateur:Lol|Toujours Lol]] | Fichier:IMG_5906.JPG|[[Utilisateur:Lol|Toujours Lol]] | ||
</gallery> | </gallery> | ||
=== Coloration syntaxique de code === | |||
<code python>import string, sys | |||
# If no arguments were given, print a helpful message | |||
if len(sys.argv)==1: | |||
print 'Usage: celsius temp1 temp2 ...' | |||
sys.exit(0) | |||
# Loop over the arguments | |||
for i in sys.argv[1:]: | |||
try: | |||
fahrenheit=float(string.atoi(i)) | |||
except string.atoi_error: | |||
print repr(i), "not a numeric value" | |||
else: | |||
celsius=(fahrenheit-32)*5.0/9.0 | |||
print '%i\260F = %i\260C' % (int(fahrenheit), int(celsius+.5))</code> |
modifications