pythonliu97 发表于 2020-4-29 17:19:53

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)

zltzlt 发表于 2020-4-29 17:22:43

os.startfile('1.m4a') 返回的是 None,也就是说 os.startfile() 没有返回值,关闭一个 None 对象肯定出错
页: [1]
查看完整版本: os模块关闭音乐文件