Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
import base64 image = open('stupid_noobs.png', 'rb') image_read = image.read() image_64_encode = base64.encodestring(image_read)
import base64 image = open('lol.jpeg', 'rb') #open binary file in read mode image_read = image.read() image_64_encode = base64.encodestring(image_read)
with open("test.txt", "a") as myfile: myfile.write("appended text")