Answers for "open a file from python"

32

python make txt file

file = open("text.txt", "w") 
file.write("Your text goes here") 
file.close() 
'r' open for reading (default)
'w' open for writing, truncating the file first
'x' open for exclusive creation, failing if the file already exists
'a' open for writing, appending to the end of the file if it exists
Posted by: Guest on April-04-2020
41

python read file

with open("file.txt", "r") as txt_file:
  return txt_file.readlines()
Posted by: Guest on November-30-2020
3

python open and read file with

with open('pagehead.section.htm','r') as f:
    output = f.read()
Posted by: Guest on May-15-2020
1

how to open a file in python

#open any file that is in your folder you are using in your editor
import os
os.startfile('Gamepicture.jfif')
Posted by: Guest on October-04-2020

Python Answers by Framework

Browse Popular Code Answers by Language