I will be out of the office starting 12/20/2005 and will not return until
12/27/2005.
I'm out of the office and will return on Monday, the 22nd of March. If you
have an emergency, please call 407.665.0311
--
http://mail.python.org/mailman/listinfo/python-list
trying to determine a variable type, specifically that a variable is an
integer.
i tried using type(var) but that only seemed to produce a response in the
command line.
is there a built in python function to determine if a variable is an
integer?
--Florida has a very broad Public Recor
getting an unsubscriptable
object error on an if else statement
db = MSSQL.connect(server,login,pwd,database)
c = db.cursor()
c.execute(mySQL)
rows = c.fetchone()
#determine recipient
if str(rows[3]) == str(rows[4]):
recipient
= str(rows[0]) + " " + str(rows[1])
else: