首页> 开发问题 >其它问题 其它问题
TypeError: 'newline' is an invalid keyword argument for this function 错误解决
作者:小萝卜 2019-12-06 【 漏洞BUG 】 浏览 1981
简介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)
相关文章
- pycharm无法识别自己的文件夹的程序
- 报错:configure: error: no acceptable C compiler found in $PATH
- Java compiler level does not match the version of the installed Java project facet
- Python“Non-ASCII character 'xe5' in file”报错问题
- Unreachable statement
- clion ctrl+鼠标左键不能调到函数实现
- Python运行语法错误:IndentationError: unindent does not match any outer indentation level
- ImportError: cannot import name 'BaseDataset' from 'src.dataset'
- 解决:Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.2:compile
- bash: hadoop:command not found
