コード例 #1
0
ファイル: mylib3.py プロジェクト: JasonGlazer/eppy
def getfilelist(flist,lsep):
#flist is s text file with a list of file names
#the file names are returned in a list
	st=mylib1.readfile(flist)
	st=st.rstrip()
	ls=st.split(lsep)
	return ls
コード例 #2
0
import mylib1,mylib2