The best way to Learn a File in Python


If it is advisable to learn a file in Python, then you need to use the open() built-in perform that will help you.

Let’s say that you’ve a file referred to as somefile.txt with the next contents:

Whats up, it is a check file
With some contents

The best way to Open a File and Learn it in Python

We are able to learn the contents of this file as follows:

f = open("somefile.txt", "r")
print(f.learn())

It will print out the contents of the file.

If the file is in a unique location, then we might specify the placement as nicely:

f = open("/some/location/somefile.txt", "r")
print(f.learn())

The best way to Solely Learn Elements of a File in Python

For those who don’t wish to learn and print out the entire file utilizing Python, then you’ll be able to specify the precise location that you just do need.

f = open("somefile.txt", "r")
print(f.learn(5))

It will specify what number of characters you wish to return from the file.

The best way to Learn Traces from a File in Python

If it is advisable to learn every line of a file in Python, then you need to use the readline() perform:

f = open("somefile.txt", "r")
print(f.readline())

For those who referred to as this twice, then it could learn the primary two strains:

f = open("somefile.txt", "r")
print(f.readline())
print(f.readline())

A greater means to do that, is to loop by means of the file:

f = open("somefile.txt", "r")
for x in f:
  print(x)

The best way to Shut a File in Python

It’s at all times good apply to shut a file after you’ve gotten opened it.

It’s because the open() methodology, will preserve a file handler pointer open to that file, till it’s closed.

f = open("somefile.txt", "r")
print(f.readline())
f.shut()

Leave a Reply