Учебники

Python — строки в виде файлов

При чтении файла он читается как словарь с несколькими элементами. Таким образом, мы можем получить доступ к каждой строке файла, используя индекс элемента. В приведенном ниже примере у нас есть файл, который имеет несколько строк, и эти строки становятся отдельными элементами файла.

with open ("Path\GodFather.txt", "r") as BigFile:
    data=BigFile.readlines()

# Print each line
	for i in range(len(data)):
    print "Line No- ",i 
    print data[i]

Когда мы запускаем вышеуказанную программу, мы получаем следующий вывод:

Line No-  0
Vito Corleone is the aging don (head) of the Corleone Mafia Family. 

Line No-  1
His youngest son Michael has returned from WWII just in time to see the wedding of Connie Corleone (Michael's sister) to Carlo Rizzi. 

Line No-  2
All of Michael's family is involved with the Mafia, but Michael just wants to live a normal life. Drug dealer Virgil Sollozzo is looking for Mafia families to offer him protection in exchange for a profit of the drug money. 

Line No-  3
He approaches Don Corleone about it, but, much against the advice of the Don's lawyer Tom Hagen, the Don is morally against the use of drugs, and turns down the offer.

Line No-  4
This does not please Sollozzo, who has the Don shot down by some of his hit men. 

Line No-  5
The Don barely survives, which leads his son Michael to begin a violent mob war against Sollozzo and tears the Corleone family apart.

Файл в виде строки

Но все содержимое файла можно прочитать как одну строку, удалив символ новой строки и используя функцию чтения, как показано ниже. В результате нет нескольких строк.

with open("Path\GodFather.txt", 'r') as BigFile:
    data=BigFile.read().replace('\n', '')
	
# Verify the string type 
	print type(data)
	
# Print the file content
    print data

Когда мы запускаем вышеуказанную программу, мы получаем следующий вывод: