temps.txt
Code:
# TEMPERATURE CONVERSIONS / temps.txt / 09/01/2011
# CELSIUS / FAHRENHEIT / CONVERSIONS
# Alan Stewart / 1-(361)-980-1877
#
#!/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.ato1(i))
except string.atoi_error:
print repr(i), "Not a numeric value."
else:
celsius=(fahrenheit-32)*5.0/9.0
print '%iF=%iC' %(int(fahrenheit),int(celsius+0.5))
Comment