5 lines
153 B
Python
5 lines
153 B
Python
|
|
import base64
|
||
|
|
|
||
|
|
text = input('Введите текст для кодировки в Base64: ').encode()
|
||
|
|
encode = base64.b64encode(text)
|
||
|
|
print(encode)
|