Вложенные циклы Python 3 - PullRequest
       5

Вложенные циклы Python 3

0 голосов
/ 29 ноября 2018

Как я могу зациклить 'n' внутри readFileList [n] от 0 до количества файлов в каталоге.

readFileList = os.listdir()
readChoice = input('Enter filename: )
while True:
    if readChoice == readFileList[n]:
        with open(readFileList[n], 'r')  as file_obj:
            for lines in file_obj:
                print(lines)
        break
...