import fileinput
#creates empty array:
array_1 = []
for line in fileinput.input("/home/anil/Downloads/zip_folder_structure"):
#appends the original array:
print(line)
new_array = [str(line)]
array_1.append(new_array)
fileinput.close()
#doesn't print anything here:
print(array_1)
печать строки
['_cluster_frame']
['ca1670d2-f361-450e-be3b-7359711d2199_1']
['image_1.000000_.jpg']
print array_1
[['_cluster_frame']
['ca1670d2-f361-450e-be3b-7359711d2199_1']
['image_1.000000_.jpg']]
Попробуйте проверить, что вы получаете в строке в вашем для цикла заявление.Возможно, вы получаете файл без данных.