Location via proxy:
[ UP ]
[Report a bug]
[Manage cookies]
No cookies
No scripts
No ads
No referrer
Show this form
Home
Python
2D
Application
Buildin Function
Class
Data Structure
Data Type
Database
Development
Dictionary
Event
Exception
File
Function
GUI Pmw
GUI Tk
Language Basics
List
Math
Network
String
System
Thread
Tuple
Utility
XML
Iterating Over Lines with readlines : File Read « File « Python
Python
File
File Read
Iterating Over Lines with readlines
f = open(
"filename"
)
for
line in f.readlines(): #process(line)
Related examples in the same category
1.
Open a file and read char by char
2.
File read(n)
3.
File read() Demo
4.
File readline()
5.
File readlines
6.
Looping Over Characters with read
7.
Reading Everything: read the whole file in one go
8.
Loop through a file