write text to file utf8 python code example
Example: python write txt utf8
import codecs
file = codecs.open("lol", "w", "utf-8")
file.write(u'\ufeff')
file.close()
import codecs
file = codecs.open("lol", "w", "utf-8")
file.write(u'\ufeff')
file.close()