Как я могу зациклить '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