python file reading
fin = open("NAME.txt", 'r')
body = fin.read().split("n")
line = fin.readline().strip()
python file reading
fin = open("NAME.txt", 'r')
body = fin.read().split("n")
line = fin.readline().strip()
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);
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us