String 썸네일형 리스트형 Python, String to Hex (String->Hex) # Convert String to Hex def toHex(str): result = [] for character in str: hv = hex(ord(character)).replace('0x','') result.append('%'+hv) return reduce(lambda x,y:x+y,result) 더보기 이전 1 다음