Implement a base64 encoder without using the base64 module.
Constraints
Example
>>> encode_base64('Hello')
'SGVsbG8='
>>> encode_base64('Python')
'UHl0aG9u'
>>> encode_base64('')
''
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints