Home | Lecture 6 | Problem 6.1 | Problem 6.2 | Problem 6.3 | Problem 6.4
One way to measure the complexity of a program is to count its number of lines of code (LOC), excluding blank lines and comments. For instance, a program like
# Say hello
name = input("What's your name? ")
print(f"hello, {name}")
has just two lines of code, not four, since its first line is a comment, and its second line is blank (i.e., just whitespace). That’s not that many, so odds are the program isn’t that complex. Of course, just because a program (or even function) has more lines of code than another doesn’t necessarily mean it’s more complex. For instance, a function like
def is_even(n):
if n % 2 == 0:
return True
else:
return False
isn’t really twice as complex as a function like
def is_even(n):
return n % 2 == 0
even though the former has (more than) twice as many lines of code. In fact, the former might arguably be simpler if it’s easier to read! So lines of code should be taken with a grain of salt.
Even so, in a file called lines.py
, implement a program that expects exactly one command-line argument, the name (or path) of a Python file, and outputs the number of lines of code in that file, excluding comments and blank lines. If the user does not specify exactly one command-line argument, or if the specified file’s name does not end in .py
, or if the specified file does not exist, the program should instead exit via sys.exit
.
Assume that any line that starts with #
, optionally preceded by whitespace, is a comment. (A docstring should not be considered a comment.) Assume that any line that only contains whitespace is blank.
- Recall that a
str
comes with quite a few methods, per docs.python.org/3/library/stdtypes.html#string-methods, includinglstrip
andstartswith
. - Note that
open
canraise
aFileNotFoundError
, per docs.python.org/3/library/exceptions.html#FileNotFoundError. - You might find it helpful to test your program on previous problems code as well as on programs of your own.
From the root of your repository execute cd 6-FileIO
So your current working directory is ...
/6-FileIO $:
Next execute
mkdir lines
to make a folder called lines
in your codespace.
Then execute
cd lines
to change directories into that folder. You should now see your terminal prompt as /6-FileIO/lines $
. You can now execute
code lines.py
to make a file called lines.py
where you’ll write your program.
Here’s how to test your code manually:
-
Run your program with
python lines.py
. Your program should exit withsys.exit
and provide an error message:Too few command-line arguments
-
Create two python programs,
hello.py
andgoodbye.py
. Runpython lines.py hello.py goodbye.py
. Your program should exit withsys.exit
and provide an error message:Too many command-line arguments
-
Create a text file called
invalid_extension.txt
. Run your program withpython lines.py invalid_extension.txt
. Your program should exit withsys.exit
and provide an error message:Not a Python file
-
Run your program with
python lines.py non_existent_file.py
. Assumingnon_existent_file.py
doesn’t exist, your program should exit withsys.exit
and provide an error message:File does not exist
-
Create additional python programs which vary in complexity: create some with comments, some docstrings, and some whitespace. For each of these files run
python lines.py FILENAME
whereFILENAME
is the name of the file.lines.py
should output the number of lines, excluding comments and whitespace, present in the given file.
At the /6-FileIO/lines $
prompt in your terminal:
git add -A
Add all changed files in the repository to be committed
git commit -m “Upload completed lines.py“
Commit all changes in the REPO with the comment “Upload completed lines.py“ note: If the file is not complete, adjust the comment to describes what is being commited
git push
Push all changes to the REPO