0w0

문자열->hex, hex->문자열 < 문자열.[encode|decode]("방식") > 본문

Coding/Python

문자열->hex, hex->문자열 < 문자열.[encode|decode]("방식") >

0w0 2016. 11. 12. 07:36
728x90
반응형


입력한 문자열을 hex로

encode 함수를 사용!!

>>> input_str=raw_input("String : ")

String : ABCD

>>> print input_str

ABCD

>>> input_str.encode("hex")

'41424344'



hex를 문자열로

decode 함수를 사용!!

>>> hex_value=input_str.encode("hex")

>>> hex_value.decode("hex")

'ABCD'



문자열을 base64로

>>> a=input_str.encode("base64")

>>> print a

QUJDRA==


base64를 문자열로

>>> a.decode("base64")

'ABCD'




< 문자열.[encode|decode]("방식") >

728x90
반응형

'Coding > Python' 카테고리의 다른 글

[test02] 참치김밥 좋아.  (0) 2019.06.23
[test01] 후라이 좋아.  (0) 2019.06.23
[3.5], [3.6] 한글 출력  (0) 2019.01.22
[euler] Problem 2 피보나치 수열;;  (0) 2017.07.17
[python] Sublime Text 3 과 python  (0) 2017.06.16
Comments