>>> "\X41"
'A'
>>> y="\\X"
>>> z="41"
>>> y+z
'\\X41'
>>> eval("y+z")
'\\X41'I want to end up with 'A' as in the first operation. I must be doing something stupid? Watizit? Regards, ..jim -- [email protected] http://www.kernel-panic.org/cgi-bin/mailman/listinfo/kplug-list
