Answers for "python text in utf 8"

1

python write txt utf8

import codecs

file = codecs.open("lol", "w", "utf-8")
file.write(u'ufeff')
file.close()
Posted by: Guest on March-30-2021
1

python encoding utf 8

# -*- coding: utf-8 -*-
Posted by: Guest on September-03-2021

Python Answers by Framework

Browse Popular Code Answers by Language