NFLmusic库文件

This commit is contained in:
2025-01-23 16:47:37 +08:00
parent 7516e1c95d
commit 9b3f1d1654
54 changed files with 3763 additions and 0 deletions

View File

@ -0,0 +1,6 @@
while True:
filename = input('File Name:')
with open(filename, 'rb') as f:
file_turn = f.read()
with open(filename+'.txt', 'w') as f:
f.write(str(file_turn))