Exercise 15. Reading Files

You know how to get input from a user with input or argv. Now you will learn about reading from a file. You may have to play with this exercise the most to understand what’s going on, so do the exercise carefully and remember your checks. Working with files is an easy way to erase your work if you are not careful.

This exercise involves writing two files. One is the usual ex15.py file that you will run, but the other is named ex15_sample.txt. This second file isn’t a script but a plain text file we’ll be reading in our script. Here are the contents of that file:

This is stuff I typed into a file.
It is really cool stuff.
Lots and lots of fun to have in here.

What we want to do is open that file in our script and print it out. However, we do not want to just hard code the name ex15_sample.txt into our script. “Hard coding” means putting some bit of information that should come from the user as a string directly in our source code. That’s bad because we want it to load other files later. The solution is to use argv or input to ask the user what file to open instead of hard coding the file’s name.

ex15.py


 1    from sys import argv
 2
 3    script, filename = argv
 4
 5    txt = open(filename)
 6
 7    print(f"Here's your file {filename}:")
 8    print(txt.read())
 9
10    print("Type the filename again:")
11    file_again = input("> ")
12
13    txt_again = open(file_again)
14
15    print(txt_again.read())

A few fancy things are going on in this file, so let’s break it down real quickly:

• Lines 1–3 use argv to get a filename. Next we have line 5, where we use a new command, open. Right now, run pydoc open and read the instructions. Notice how, like your own scripts and input, it takes a parameter and returns a value you can set to your own variable. You just opened a file.

• Line 7 prints a little message, but on line 8 we have something very new and exciting. We call a function on txt named read. What you get back from open is a file, and it also has commands you can give it. You give a file a command by using the . (dot or period), the name of the command, and parameters, just like with open and input. The difference is that txt.read() says, “Hey txt! Do your read command with no parameters!”

The remainder of the file is more of the same, but we’ll leave the analysis to you in the Study Drills.

What You Should See


Warning!

Pay attention! I said, pay attention! You have been running scripts with just the name of the script, but now that you are using argv you have to add arguments. Look at the very first line of the example below and you will see I do python ex15.py ex15_sample.txt to run it. See the extra argument ex15_sample.txt after the ex15.py script name. If you do not type that you will get an error, so pay attention!


I made a file called ex15_sample.txt and ran my script.

Exercise 15 Session


$ python3.6 ex15.py ex15_sample.txt
Here's your file ex15_sample.txt:
This is stuff I typed into a file.
It is really cool stuff.
Lots and lots of fun to have in here.

Type the filename again:
>  ex15_sample.txt
This is stuff I typed into a file.
It is really cool stuff.
Lots and lots of fun to have in here.

Study Drills

This is a big jump, so be sure you do this Study Drill as best you can before moving on.

1. Above each line, comment out in English what that line does.

2. If you are not sure, ask someone for help or search online. Many times searching for “python3.6 THING” will find answers to what that THING does in Python. Try searching for “python3.6 open.”

3. I used the word “commands” here, but commands are also called “functions” and “methods.” You will learn about functions and methods later in the book.

4. Get rid of lines 10–15 where you use input and run the script again.

5. Use only input and try the script that way. Why is one way of getting the filename better than another?

6. Start python3.6 to start the python3.6 shell, and use open from the prompt just like in this program. Notice how you can open files and run read on them from within python3.6?

7. Have your script also call close() on the txt and txt_again variables. It’s important to close files when you are done with them.

Common Student Questions

Does txt = open(filename) return the contents of the file? No, it doesn’t. It actually makes something called a file object. You can think of a file like an old tape drive that you saw on mainframe computers in the 1950s or even like a DVD player from today. You can move around inside them and then “read” them, but the DVD player is not the DVD the same way the file object is not the file’s contents.

I can’t type code into Terminal/PowerShell like you say in Study Drill 7. First, from the command line just type python3.6 and press Enter. Now you are in python3.6 as we’ve done a few other times. Then you can type in code and Python will run it in little pieces. Play with that. To get out of it type quit() and hit Enter.

Why is there no error when we open the file twice? Python will not restrict you from opening a file more than once, and sometimes this is necessary.

What does from sys import argv mean? For now just understand that sys is a package, and this phrase just says to get the argv feature from that package. You’ll learn more about these later.

I put the name of the file in as script, ex15_sample.txt = argv, but it doesn’t work. No, that’s not how you do it. Make the code exactly like mine, then run it from the command line the exact same way I do. You don’t put the names of files in, you let Python put the name in.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.15.46.13