“Comment ouvrir un fichier avec Python” Réponses codées

python lire le fichier ligne par ligne

with open("file.txt") as file_in:
    lines = []
    for line in file_in:
        lines.append(line)
Caleb McNevin

Comment ouvrir un fichier avec Python

x = open("filename.txt", "r")
print(x.read()) #if file is a txt file this will print the text
#Make sure the file is in the same directory as were your python file is opened in.
#you can also make a var out of your text by doing:
var = x.read() #or 
var = open("filename.txt", "r").read()
chubby dawg

Comment ouvrir un fichier dans Python

spv = open("example.txt", "r")
print(spv.red())

# r, is to make the file readable but you can have more like: a - w - x - t - b
Grieving Goosander

Réponses similaires à “Comment ouvrir un fichier avec Python”

Questions similaires à “Comment ouvrir un fichier avec Python”

Plus de réponses similaires à “Comment ouvrir un fichier avec Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code