Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python - Comment lire une ligne de fichier par ligne

>>> filePath = r"/your/file/path" >>> with open(filePath, 'r', encoding='utf-8') as f: 	f.readlines()  	 ['Line One: 1
', 'Line Two: 2
', 'Line Three: 3
', 'Line Four: 4
', 'Line Five: 5'] 
Source by www.codeprofesseur.fr #
 
PREVIOUS NEXT
Tagged: #Python #Comment #lire #une #ligne #de #fichier #par #ligne
ADD COMMENT
Topic
Name
4+8 =