here is the "which python"
Aragorn:Tools david$ which python
/usr/bin/python
Aragorn:Tools david$
Here are the first few lines of "kindlepid.py"
#!/usr/bin/python
import sys, binascii
letters = "ABCDEFGHIJKLMNPQRSTUVWXYZ123456789"
def crc32(s):
return (~binascii.crc32(s,-1))&0xFFFFFFFF
Should there be a space between #! & /user/bin/python ?????
|