Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

Write a program find. py that searches all files specified on the command line and prints out all lines containing a specified word. For example, if you call python find.py ring report.txt address.txt honework.py then the program might print report. txt: has broken up an international ring of DVD bootleggers that address.tut: Kris Kringle, North Pole address. txt: Homer Sinpson, Springfield honework.py: string = "text" The specificd word is always the first command line argument.

Short Answer

Expert verified
Read command line arguments, open each file, and print lines containing the specified word.

Step by step solution

01

Import Required Modules

To start, import the necessary Python module `sys`, which allows us to access command line arguments.
02

Read Command Line Arguments

Use `sys.argv` to read the command line arguments. The first argument after the script name is the word to be searched, and the remaining arguments are the file names.
03

Open Each File for Reading

Iterate through the list of file names from the command line (starting from the second argument). Use a `for` loop to open each file in read mode.
04

Search for the Word in Each Line

For each file, read the contents line by line. Use an `if` statement within a loop to check if the specified word is present in the current line.
05

Print Lines Containing the Word

If the specified word is found in a line, format a string to include the file name and the line, and print it to the console.
06

Handle Exceptions

Add a `try-except` block around the file reading code to handle potential errors such as file not found or read permission errors.

Unlock Step-by-Step Solutions & Ace Your Exams!

  • Full Textbook Solutions

    Get detailed explanations and key concepts

  • Unlimited Al creation

    Al flashcards, explanations, exams and more...

  • Ads-free access

    To over 500 millions flashcards

  • Money-back guarantee

    We refund you if you fail your exam.

Over 30 million students worldwide already upgrade their learning with Vaia!

Key Concepts

These are the key concepts you need to understand to accurately answer the question.

Command Line Arguments
In Python, command line arguments are a way to provide input to your program directly from the command line interface without manually modifying your code. These arguments are crucial for scripts that need to be flexible and handle varying inputs or file paths.
When you run a Python script from the command line, anything that follows the script's name is treated as arguments. In our example, running `python find.py ring report.txt address.txt honework.py` executes the `find.py` script with `ring` as the first argument and `report.txt`, `address.txt`, and `honework.py` as subsequent arguments. The `sys` module in Python helps us access these with `sys.argv`, where `sys.argv[0]` is the script name, and `sys.argv[1]`, `sys.argv[2]`,... etc., are the subsequent arguments.
  • Easy access with `sys.argv`
  • Enable flexible and dynamic script execution
  • Index `sys.argv` to fetch specific arguments
Understanding these basics allows you to build efficient scripts that adapt based on input, such as the find.py script used here.
String Searching
String searching involves looking for specific patterns or substrings within a larger string. In the context of the find.py program, this means checking each line of the given files for the presence of a specified word.
In Python, there are several methods to accomplish string searching, but the simplest approach used here is to leverage the `in` keyword. It allows you to check if a substring exists within a string with ease and readability. For example, `if "word" in line:` will check whether the string `word` exists within `line`.
This approach is both intuitive and efficient for simple substring checks. However, for more complex patterns, Python offers the `re` module which provides powerful regular expression capabilities.
  • Use `in` for simple searches
  • Use the `re` module for complex patterns
  • Intuitive and efficient checks
In our program, we focus on checking whether a specified word appears in each line to subsequently print the line with the file's name.
Exception Handling
Exception handling is a critical component of writing robust Python programs. It enables your script to deal with unforeseen errors gracefully without crashing.
In our find.py program, we employ exception handling using a `try-except` block to address potential file-handling errors. For instance, files may not be found at the given path, or there might be permission issues preventing the script from reading a file. Wrapping the file processing logic within a `try-except` block ensures that your program can catch these exceptions and handle them appropriately, possibly by printing a user-friendly error message instead of terminating abruptly.
  • Use `try-except` to catch and handle errors
  • Prevent program crashes due to unforeseen issues
  • Improve user experience by providing clear error messages
By implementing exception handling, you ensure that your program remains reliable, even when encountering unexpected situations, which is crucial in file operations.
Importing Modules
Importing modules in Python is a way to leverage existing code libraries that provide additional functionality and solve problems efficiently. The `sys` module, crucial in our solution, provides us with functionalities for interacting with the interpreter.
The `import` statement is used to bring these modules into your script. For instance, `import sys` at the beginning of your Python script allows you to use the module's functionality, such as `sys.argv` for accessing command line arguments.
  • Central part of Python’s modularity
  • Use `import` to include external code libraries
  • Enhance program capabilities with minimal effort
By importing modules, you extend your script's capabilities without having to write everything from scratch, thus saving time and effort. In the find.py example, only the `sys` module is needed, but more modules can be imported as required.

One App. One Place for Learning.

All the tools & learning materials you need for study success - in one app.

Get started for free

Most popular questions from this chapter

In order to read a web page (Special Topic 7.4), you need to know its character cncoding (Special Topic 7.3). Write a program that has the URL of a web page as a command-line argument and that fetches the page contents in the proper encoding. Determine the encoding as follows: 1\. After calling urlopen, call input.headers ["content-type"]. You may get a string such as "text/htn1; charset-windows-1251". If so, use the value of the charset attribute as the cncoding. 2\. Read the first line using the "latin 1 " encoding. If the first two bytes of the file are 254255 or 255254 , the encoding is "ut \(f-16^{\prime \prime}\). If the first three bytes of the file are 239187191 , the encoding is "ut \(f-8^{*}\). 3\. Continue reading the page using the "latin 1 " encoding and look for a string of the form encoding=... or charset \(=\ldots\) If you found a match, extract the character encoding (discarding any surrounding quotation marks) and re-read the document with that encoding. If none of these applies, write an error message that the encoding could not be determined.

What happens if an exception does not have a matching except clause?

Write a program that reads a file containing two columns of floating-point numbers. Prompt the user for the file name. Print the average of each column.

Write a program that concatenates the contents of several files into one file. For example, catfiles chapter1.txt chapter2. txt chapter 3 , txt book.txt makes a long file book, txt that contains the contents of the files chapter1. txt, chapter2. txt, and chapter3.txt. The target file is always the last file specificd on the command line.

A hotel salesperson enters sales in a text file. Each line contains the following, separated by semicolons: The name of the client, the service sold (such as Dinner, Conference, Lodging, and so on), the amount of the sale, and the date of that event. Write a program that reads such a file and displays the total amount for each service category. Display an error if the file does not exist or the format is incorrect.

See all solutions

Recommended explanations on Computer Science Textbooks

View all explanations

What do you think about this solution?

We value your feedback to improve our textbook solutions.

Study anywhere. Anytime. Across all devices.

Sign-up for free