Python Trailing L Problem
If you do the conversion to hex using
"%x" % 4220963601
there will be neither the 0x
nor the trailing L
.
Calling str()
on those values should omit the trailing 'L'.
If you do the conversion to hex using
"%x" % 4220963601
there will be neither the 0x
nor the trailing L
.
Calling str()
on those values should omit the trailing 'L'.