IT 117: Intermediate Scripting
Homework 6

Due

Sunday, March 9th at 11:59 PM

What You Need to Do

Setup On Your Machine

Specification

Functions

get_environment_variable_value()

get_file_count()

get_dir_count()

Test Code

Output

Suggestions


  1. Create the file hw6.py and in it add the headers for all functions.
    The body of each function should be the Python statement pass.
    There must be a blank line between each function.
    Add the test code below.
    There must be a blank line between the functions and the test code.
    Run the script.
    You should see nothing.
    Fix any errors you find.
  2. Under the hashbang line write a statement to import the os module.
    Remove the pass statement from get_environment_variable_value.
    There is a variable in the os module that allows you to find the value of any shell variable.
    Get the value of the shell variable whose name is given by the parameter variable_name and store it in the variable value.
    Add a statement to print value.
    Run the script.
    You should see the value of your SHELL variable.
    Fix any errors you find.
  3. Remove the print statement and replace it with a statement that returns value.
    Run the script.
    You should see the value of your SHELL variable.
    Fix any errors you find.
  4. Remove the pass statement from get_file_count.
    Add a statement that prints the value of the parameter dir_path.
    Run the script.
    You should see / on a line under the value of your SHELL variable.
    Fix any errors you find.
  5. Remove the print statement.
    Replace it with an assignment statement that sets count to 0.
    Now to the os function that changes to a new directory using the parameter dir_path as the argument.
    Run the os function that returns a list of the entries in a directory in the current directory and store this in the variable entries.
    Print entries.
    Run the script.
    Fix any errors you find.
  6. Remove the print statement.
    Replace it with a for loop over entries using the loop variable entry.
    Inside the loop print entry.
    Run the script.
    Fix any errors you find.
  7. Remove the print statement.
    In it's place write an if statement that will run if entry is a file.
    There is a boolean funtion in os.path that will return True if it's argument is the name of a file.
    Use this funtion in the if header.
    In the cofde block for this if statement print entry.
    Run the script.
    Fix any errors you find.
  8. Inside the if statement, remove the call to print.
    Replace it with a statement that increments the value of count by 1.
    Out side the for loop, print count.
    Run the script.
    Fix any errors you find.
  9. Replace the print statement you just wrote with a statement that returns the value of count.
    Run the script.
    It should print out the same number as in the previous step. Fix any errors you find.
  10. Remove the pass statement from print_file_count_for_dir_list.
    Replace it with the code block from get_file_count().
    Run the script.
    Fix any errors you find.
  11. You need to change the function used in the if statement.
    There is a boolean funtion in os.path that will return True if its argument is the name of a directory.
    You must use this function in the if statement.
    Run the script.
    Fix any errors you find.

Copy the file to Unix

Testing on Your Machine

Copy the Script to Unix

Testing the Script on Unix (Optional)

Copyright © 2022 Glenn Hoffman. All rights reserved. May not be reproduced without permission.