如何用python打开mp3文件呢?我这样为什么不对呢?

2025-04-25 20:33:29
推荐回答(1个)
回答1:

f=open('xxx.mp3','r')
for each_line in f.read():
    print each_line
f.close()