>My goal is to combine two different numbers and encrypt them to create a new number that cann't be traced back to the originals.
Here's one:
def encrypt(x, y):
"""Return a number that combines x and y but cannot be traced back
to them."""
return x + y
--
http://mail.python.org/mailman/listinfo/python-list
