Skip to content

Instantly share code, notes, and snippets.

@dandv
Created November 26, 2008 08:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dandv/29325 to your computer and use it in GitHub Desktop.
Save dandv/29325 to your computer and use it in GitHub Desktop.
#!/usr/local/bin/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))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment