Files
base64-encoder-decoder/decoder.py

6 lines
157 B
Python
Raw Normal View History

2026-03-30 13:34:56 +00:00
import base64
e_text = input('Введите текст в кодировке Base64: ').encode()
text = base64.b64decode(e_text)
print(text.decode())