In [13]:
", ".join(["0x%02x" % ord(c) for c in chr(255)])
Out[13]:
In [16]:
import time
str(int(time.time()))
Out[16]:
In [17]:
import codecs
codecs.encode("Hello", "hex")
Out[17]:
In [19]:
chr(3).encode('hex')
Out[19]:
In [20]:
help(time.time)
In [21]:
1+2
Out[21]:
In [ ]: