首页> 开发问题 >其它问题 其它问题
TypeError: 'newline' is an invalid keyword argument for this function 错误解决
作者:小萝卜 2019-12-06 【 漏洞BUG 】 浏览 1859
简介TypeError: 'newline' is an invalid keyword argument for this function 错误解决
出错代码:
outputFile = open('output1.csv', 'w', newline='') # error line
outputWriter = csv.writer(outputFile)
使用newline=''是为了避免行距两倍的情况。
解决方法:
outputFile = open('output1.csv', 'wb') # 'w' ---> 'wb'
很赞哦! (0)
相关文章
- 创建Maven项目时提示web.xml is missing and <failOnMissingWebXml> is set to true错误解决方案
- bash: hadoop:command not found
- 异常解决:util.NativeCodeLoader: Unable to load native-hadoop library for your platform
- Attempt to invoke interface method 'boolean java.util.List.add(java.lang.Object)' on a null object reference
- datagrid MAC和VPNIP显示不出来,Time显示错误的问题
- MATLAB关闭科学计数法显示
- 报错:configure: error: no acceptable C compiler found in $PATH
- scp 文件 : /目录: Permission denied
- 无法定位程序输入点到xxx.dll
- 心路历程——毕设程序mr跑不通的问题