Convert String to Hex def toHex(str): result = [] for character in str: hv = hex(ord(character)).replace('0x','') result.append('%'+hv) ...
確定! 回上一頁