Question

Complete the Python function read_third_line() so that it takes a filename and returns the third line...

Complete the Python function read_third_line() so that it takes a filename and returns the third line of the file as a string.

0 0
Add a comment Improve this question Transcribed image text
Answer #1
def read_third_line(fname):
    try:
        f = open(fname)
        i = 1
        for x in f:
            line = x.strip()
            if(i==3):
                return line
            i+=1
    except Exception as e:
        pass


# Testing
read_third_line("file.txt")

Add a comment
Know the answer?
Add Answer to:
Complete the Python function read_third_line() so that it takes a filename and returns the third line...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT