Answers for "read from file"

41

python read file line by line

with open("file.txt") as file_in:
    lines = []
    for line in file_in:
        lines.append(line)
Posted by: Guest on March-03-2020
41

python read file

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

python read file

txt = open('FILENAME.txt')
txtread = txt.read()
print(txtread)
print(txt.read())
Posted by: Guest on March-08-2021
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

reading from a text file in java

public static void main(String[] args) throws Exception 
  { 
    // pass the path to the file as a parameter 
    FileReader fr = new FileReader("C:\Users\pankaj\Desktop\test.txt"); 
  
    int i; 
    while ((i=fr.read()) != -1) 
      System.out.print((char) i); 
  }
Posted by: Guest on October-12-2020

Python Answers by Framework

Browse Popular Code Answers by Language