Convert integer to hex string. >>> hex(12525) '0x30ed'. Remove prefix. >>> "{:x}".format(12525) '30ed'. Left-pad with spaces.
確定! 回上一頁