some changing

This commit is contained in:
2022-06-29 23:17:16 +03:00
parent 25c76bd550
commit 2f9e202adc
4 changed files with 68 additions and 53 deletions

19
test4.py Normal file
View File

@@ -0,0 +1,19 @@
from os import walk
f = []
print(f'{f}\n----------------')
for filenames in walk('audio'):
f.extend(filenames)
break
print(f'{f}\n----------------')
f = f[2]
print(f)
print(type(f))
i = 100
print(i)
i = i * 4
print(i)