1 Star 1 Fork 0

iorichina/python-customs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
export2file.py 490 Bytes
一键复制 编辑 原始数据 按行查看 历史
iorichina 提交于 2018-10-26 23:45 . 增加执行参数
class export2file():
def init(self, filename, codestyle):
self.codestyle = codestyle
self.filename = open(filename, "w", encoding=codestyle)
def write(self, strval):
# print('write', strval, strval.encode(
# self.codestyle, 'ignore').decode(self.codestyle))
self.filename.write(strval.encode(
self.codestyle, 'ignore').decode(self.codestyle))
def close(self):
self.filename.flush()
self.filename.close()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/iorichina/python-customs.git
git@gitee.com:iorichina/python-customs.git
iorichina
python-customs
python-customs
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385