Changes

Jump to: navigation, search

OPS435 Python Assignment 1 2018 Fall

2,729 bytes added, 12:21, 18 December 2018
Documentation
When making back up of data files or log files, it is a very common practice to name the backup directories and/or files based on the date the backup was done. In order to restore or locate the directory/file, we often need to find out the backup date from today's date.
The computational task for this assignment is to design an algorithm and write a python program script according to your algorithm with appropriate functions which will . The script should take a date in the "YYYYMMDD" format and the number of day days before or after the given date as the command line arguments, calculate and output to the standard output data channel the actual targeted date which is the number of day before or after the given date in the same format.
== Coding Standard ==Your python script must follow the following coding guide:
* [https://www.python.org/dev/peps/pep-0008/ PEP-8 -- Style Guide for writing Python Code]
== Command Line Argument to be supported ==
* Name your python script as a1_[student_id].py, where [student_id] is your Seneca email user name.* Your python script must support two command line arguments: (1) any valid date in YYYYMMDD format, (2) number of days before or after the given date.* If there are less or more than two command line arguments given on the command line, your script should display the correct usage message and exit. = Computation Requirements === Algorithm Design ==* Write a step-by-step instructions in English on how to figure out a date which is n days before or after a given date.* While you are working on the step-by-step instructions, note that there are different number of days in each month and some years have 365 days and some years have 366 days.* You should also do some research to find out when we started using the Calendar in the current form. (This will pose a limit on the validity of your algorithm.) == Required Modules and Functions ==You must have <b><font color='blue'>Your python script is allowed to import only the <u>os and sys</u> modules from the standard library and all the built-in modules.</font></b> Based on your algorithm designed for this assignment, you should at least have the following three functions defined in your python programscript (see later section on the purpose of each function):* dbda()* tomorrow()* yesterday()You can also create additional functions to improved the re-usability of your python code by adding the following functions:
* leapyear()
* main()
* tomorrow()
* validdate()
* yesterdayusage()
== Documentation ==
* Please use python's docstring to document your python script and each of the functions you created for this assignment. The docstring should describle 'what' the function does, not 'how' it does.* Please add The following shows the docstring that was added to the tomorrow() function to provide which provides the following information when call called with help(tomorrow) in the python interactive shell:
<pre>
Help on function tomorrow in module rchan:
</pre>
= Due Date This Assignment is due on Sunday October 14, 2018. Submit on blackboard under the assignments section. Authorship Declaration ==All your Python code for this program assignment must be placed in a <font color='red'><b><u>single source python file</u></b></font>. Please include the following declaration by <b><u>youas the docstring</u></b> as a comment in your Python source code file (replace "Student Name" with your own name):
<source>OPS435 Assignment 1 - Fall 2018
Program: [student_id].py (replace student_id with your Seneca User name)
The python code in this file ([Student_id].py) is original work written by
"Student Name". No code in this file is copied from any other source
except those provided by the course instructor, including any person, textbook, or on-line resource. I have not shared this python program script with anyone or anything except for submission for grading. I understand that the Academic Honesty Policy will be enforced and violators will be reported and appropriate action will be taken.
</source>
= Instruction === Program Name Tests and valid command line arguments Test results ==Name You must name your python3 program python 3 script as <code>a1_[Student_id].py</code>. The following examples assumes that the student_id is rchan.The program script should accept two command line parametersarguments, the first one is the date in "YYYYMMDD" format, and the second one is the number of day from the given date, a positive value indicates the number of days after the given date, and a negative value indicates the number of days before the given date. There is an option called --step that makes the program print out all dates until the final target date. If the "YYYYMMDD" format is broken give an appropriate error message. Invalid months (>12) or invalid days of month(different for each month), should be detected and give appropriate error messages. For examples:* <b><code>python3 rchana1_rchan.py 20180101 1</code></b>, and the output should be<br />
20180102
* <b><code>python3 rchana1_rchan.py 20180101 -1</code></b>, and the output should be<br />
20171231
* <b><code>python3 rchana1_rchan.py 20180101 2</code></b>, and the output should be<br />
20180103
* <b><code>python3 rchana1_rchan.py --step 20180101 3</code></b>, and the output should be<br />
20180102
20180103
20180104
* <b><code>python3 rchana1_rchan.py 20180701 500</code></b>, and the output should be<br />
20191113
* <b><code>python3 rchana1_rchan.py 20189901 2</code></b>, and the output should be<br />
Error: wrong month entered
* <b><code>python3 rchana1_rchan.py 20180199 2</code></b>, and the output should be<br />
Error: wrong day entered
* <b><code>python3 rchana1_rchan.py 2018 2</code></b>, and the output should be<br />
Error: wrong date entered
If there is too few or too many command line parameters arguments given, display the proper usage.
== Program Script structure and sample template ==Your program code should all be in a single python file with at least the functions mentioned above: leapyeardbda(), tomorrow(), mainand yesterday(). You can also add additional functions based on your algorithm, tomorrowe.g.: leapyear(), validdate(), yesterdayusage():, etc
* The dbda() function will take a date in "YYYYMMDD" format, a positive or negative integer, and return a date either before or after the given date according to the value of the given integer in the same format.
* The yesterday() function will take a date in "YYYYMMDD" format and return the date of the previous day in the same format.
* The tomorrow() function will take a date in "YYYYMMDD" format and return the date of the next day in the same format. Next paragraph is a sample python code for the tomorrow() function.
* The leapyear() function will take a year in "YYYY" format, and return True if the given year is a leap year, otherwise return False.
* The main() function will take a date in "YYYYMMDD" format, a positive or negative integer, and return a date either before or after the given date according to the value of the given integer in the same format.
* The validdate() function will take a date in "YYYYMMDD" format, and return True if the given date is a valid date, otherwise return False.
* The yesterdayusage() function will take a date in "YYYYMMDD" format no argument and return the date of the previous day in the same format. * The tomorrow() function will take a date in "YYYYMMDD" format and return string describing the date usage of the next day in the same format. Next paragraph is a sample python code for the tomorrow() functionscript
<pre>
#!/usr/sbin/env python3
....
def dbda(yyyymmdd,days): ... setup loop call tomorrow or yesterday as appropriate return target_day  if __name__ == "__main__":
.. processing command line arguments ..
.. set loop based on the number of days given .. call tomorrowdbda() or yesterday() as appropriate
...
output the expected date
return next_date
</pre>
 
= Rubric =
 
{| class="wikitable" border="1"
! Task !! Maximum mark !! Actual mark
|-
| Program Authorship Declaration ||5 ||
|-
| Program usage || 5 ||
|-
| Program Options --step || 5 ||
|-
| tomorrow() function || 5 ||
|-
| yesterday() function || 15 ||
|-
| dbda() function || 10 ||
|-
| script level docsting || 5 ||
|-
| leapyear() function || 15 ||
|-
| validdate() function || 15 ||
|-
| usage() function || 5 ||
|-
| Algorithm ||15||
|-
|'''Total''' || 100 ||
 
|}
 
= Assignment Due Date and submission procedure =
 
This Assignment is due on Sunday October 14, 2018 before mid-night. Please submit your algorithm (step-by-step instruction for solving the computation problem for this assignment in the English language), your python script, required test and test results to blackboard under the assignments section. Please refer to the detail submission instruction given on Blackboard.
1,760
edits

Navigation menu