os模块关闭音乐文件
os模块打开文件成功,但是关闭文件失败;该如何实现代码如下:
>>>import os
>>>a = os.startfile('1.m4a')
>>>os.close(a)
Traceback (most recent call last):
File "<pyshell#6>", line 1, in <module>
os.close(a)
TypeError: an integer is required (got type NoneType) os.startfile('1.m4a') 返回的是 None,也就是说 os.startfile() 没有返回值,关闭一个 None 对象肯定出错
页:
[1]