← Back to List

10938번: BASE32 인코딩 ↗

Solutions

Python 3
77 B | 77 chars
import base64
a=input()
print(str(base64.b32encode(a.encode('utf-8')))[2:-1])