Open() 需要整数?
Open() Requires Integer?
代码如下:
file=open('cake.txt','w')
显示如下:
Traceback (most recent call last):
File "<pyshell#19>", line 1, in <module>
open('cake.txt','w')
TypeError: an integer is required (got type str)
此语法在 3.6 版本上完美运行,现在我升级到 3.7 后就不行了。这里发生了什么?顺便说一句,“cake.txt”文件不存在。
python 文档也无济于事。
代码如下:
file=open('cake.txt','w')
显示如下:
Traceback (most recent call last):
File "<pyshell#19>", line 1, in <module>
open('cake.txt','w')
TypeError: an integer is required (got type str)
此语法在 3.6 版本上完美运行,现在我升级到 3.7 后就不行了。这里发生了什么?顺便说一句,“cake.txt”文件不存在。
python 文档也无济于事。