problem with taking file name from list and openning it?
Posted
by kaushik
on Stack Overflow
See other posts from Stack Overflow
or by kaushik
Published on 2010-05-28T05:45:16Z
Indexed on
2010/05/28
5:51 UTC
Read the original article
Hit count: 213
python
i have list similar to this
m=[['qw','wew','23','C:/xyz/s.wav'],['qw','wew','23','C:/xyz/s2.wav'],['qw','wew','23','C:/xyz/s1.wav']]
now i want to these files
win=wave.open(m[0][3],'rb')
it is giving error how can i use this in this way... i want to take the files name from the list
please suggest???
© Stack Overflow or respective owner