码迷,mamicode.com
首页 > 其他好文 > 详细

TypeError: 'encoding' is an invalid keyword argument for this function

时间:2017-11-26 13:55:42      阅读:1500      评论:0      收藏:0      [点我收藏+]

标签:val   his   yaml   ror   yam   error   typeerror   erro   size   

python 2.7 问题

 data_file = open("F:\\MyPro\\data.yaml", "r", encoding=‘utf-8‘)

  运行的时候报错:TypeError: ‘encoding‘ is an invalid keyword argument for this function
如何解决:
import io
data_file = io.open("F:\\MyPro\\data.yaml", "r", encoding=‘utf-8‘)

  

 

TypeError: 'encoding' is an invalid keyword argument for this function

标签:val   his   yaml   ror   yam   error   typeerror   erro   size   

原文地址:http://www.cnblogs.com/2bjiujiu/p/7898782.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!