Delete test2.py

This commit is contained in:
2022-06-27 21:59:15 +03:00
committed by GitHub
parent 45477fa5d4
commit c3848b8cc0

View File

@@ -1,13 +0,0 @@
from os import walk
f = []
for filenames in walk('audio'):
f.extend(filenames)
break
f = f[2]
files = {}
keys = range(len(f))
for x in f:
files[x] = x
print(files)