s= 'hi'
for i in range(0,20):
s=base64.b64encode(s)
print s
s= 'hi'
for x in range(0, 20):
s=s.encode('base64')
print s
왜 결과가 다르냐 ㅠㅠㅠㅠㅠㅠㅠㅠ
s= 'hi'
for i in range(0,20):
s=base64.b64encode(s)
print s
s= 'hi'
for x in range(0, 20):
s=s.encode('base64')
print s
왜 결과가 다르냐 ㅠㅠㅠㅠㅠㅠㅠㅠ
"hi".encode("base64")랑 base64.b64encode("hi") 비교해 봐라
같음
"hi".encode("base64")하면 "\n"이 붙던데 뒤에
http://dblack.tk
커뮤니티 사이트 입니다 많은 이용 부탁 드립니다.