Question: I using CodeSkulptor3 working on Assignment: Project: Working with Dates Assignment context: Python Programming Essentials I need help fixing this code here is the code
I using CodeSkulptor3 working on
Assignment: Project: Working with Dates Assignment context: Python Programming Essentials I need help fixing this code here is the code and the error:
""" Project for Week 4 of "Python Programming Essentials". Collection of functions to process dates. Implementing the datetime module and computing simple processing on dates using the Python's datetime module. """ import datetime
#days in month function def days_in_month(year, month): """ This function takes two integers: a year and a month that return the number of days in that given month. """
#computing number of days in a month if (datetime.MINYEAR <= year <= datetime.MAXYEAR) and (1 <= month <=11): date1 = datetime.date(year, month, 1) date2 = datetime.date(year, month+1, 1) return (date2 - date1).days elif (datetime.MINYEAR <= year <= datetime.MAXYEAR) and (month == 12): date1 = datetime.date(year, month, 1) date2 = datetime.date(year+1, 1, 1) return (date2 - date1).days else: return False
#date is valid function def is_valid_date(year, month, day): """ This function takes three integers: a year, a month, and a day. and return True if the date is valid and False otherwise. """
#computing date is valid or not days = days_in_month(year, month) if ((datetime.MINYEAR <= year <= datetime.MAXYEAR) and (1<= month <= 12) and (0 < day <= days)): return True else: return False
#computing number of days between two dates def days_between(year1, month1, day1, year2, month2, day2): """ Takes six integers (year1, month1, day1, year2, month2, day2) and returns the number of days from an earlier to a later date and if either date is invalid the function return 0. """
#computing the number between days #conditions and computation of days between two dates if (is_valid_date(year1, month1, day1)) and (is_valid_date(year2, month2, day2)):
date1 = datetime.date(year1, month1, day1) date2 = datetime.date(year2, month2, day2)
if (date2 > date1): number_of_days = date2 - date1 return number_of_days.days else: return 0 else: return 0
#computing person's age in days def age_in_days(year, month, day): """ Takes three integers as input(year,month,day) of a persons birthday and return that person's age in days as of today. """
#conditions and calculations of person's age in days
if (is_valid_date(year, month, day)): today = datetime.date.today() person_bday = datetime.date(year, month, day) if (person_bday < today): person_age_in_days = days_between(year, month, day, today.year, today.month, today.day) return person_age_in_days else: return 0 else: return 0
year_input = int(input("Please write the year you want to calculate")) month_input = int(input("Please give the number of the month")) print("Total Days in Month is :", days_in_month(year_input, month_input))
# Add the year, month, day for parts 1 year_input1 = int(input("Please write the year you want to check")) month_input1 = int(input("Please give the number of the month for finalise checking")) day_input1 = int(input("Please give the date for Checking")) print("Given date is :", is_valid_date(year_input1, month_input1, day_input1))
# Add the year, month, day for parts 2 year_input2 = int(input("Please write the year from where you want to calculate")) month_input2 = int(input("Please write the month from where you want to calculate")) day_input2 = int(input("Please write the date from where you want to calculate"))
# Add the year, month, day for parts 3 year_input3 = int(input("Please write the end year where you want to calculate")) month_input3 = int(input("Please write the end of the month where you want to calculate")) day_input3 = int(input("Please write the end date where you want to calculate")) print("Distance Between The Given Dates :", days_between(year_input2, month_input2, day_input2, year_input3, month_input3, day_input3))
# Add the year, month, day for parts 4 year_input4 = int(input("Please write the year of birth")) month_input4 = int(input("Please write the month of birth")) day_input4 = int(input("Please write the date of birth")) print("Persons age in days :", age_in_days(year_input4, month_input4, day_input4))
The error it keep sending me back is :
Testing was aborted! Please fix the errors detailed below before resubmitting.
- Import Errors
- Coding Convention Warnings
- Your code
The following errors caused the testing system to abort unexpectedly. These errors MUST be corrected before testing can complete!
An exception occurred when the code was imported before testing: (EOFError) EOF when reading a line at line 90, in . Be sure to comment out any lines that 'run' your code when the file is loaded.
- [C0326: bad-whitespace] In "user306_k8ruhFjIKz83w83.py" at line 17, column 26: Exactly one space required before comparison if (datetime.MINYEAR <= year <= datetime.MAXYEAR) and (1 <= month <=11): ^^ function "user306_k8ruhFjIKz83w83.py", line 17
- [C0326: bad-whitespace] In "user306_k8ruhFjIKz83w83.py" at line 17, column 34: Exactly one space required after comparison if (datetime.MINYEAR <= year <= datetime.MAXYEAR) and (1 <= month <=11): ^^ function "user306_k8ruhFjIKz83w83.py", line 17
- [C0326: bad-whitespace] In "user306_k8ruhFjIKz83w83.py" at line 17, column 74: Exactly one space required after comparison if (datetime.MINYEAR <= year <= datetime.MAXYEAR) and (1 <= month <=11): ^^ function "user306_k8ruhFjIKz83w83.py", line 17
- [C0326: bad-whitespace] In "user306_k8ruhFjIKz83w83.py" at line 39, column 28: Exactly one space required before comparison if ((datetime.MINYEAR <= year <= datetime.MAXYEAR) ^^ function "user306_k8ruhFjIKz83w83.py", line 39
- [C0326: bad-whitespace] In "user306_k8ruhFjIKz83w83.py" at line 39, column 36: Exactly one space required after comparison if ((datetime.MINYEAR <= year <= datetime.MAXYEAR) ^^ function "user306_k8ruhFjIKz83w83.py", line 39
- [C0330: bad-continuation] In "user306_k8ruhFjIKz83w83.py" at line 40, column 0: Wrong continued indentation before block. and (1<= month <= 12) and (0 < day <= days)): | |^ function "user306_k8ruhFjIKz83w83.py", line 40
- [C0326: bad-whitespace] In "user306_k8ruhFjIKz83w83.py" at line 40, column 19: Exactly one space required before comparison and (1<= month <= 12) and (0 < day <= days)): ^^ function "user306_k8ruhFjIKz83w83.py", line 40
- [C0326: bad-whitespace] In "user306_k8ruhFjIKz83w83.py" at line 40, column 29: Exactly one space required before comparison and (1<= month <= 12) and (0 < day <= days)): ^^ function "user306_k8ruhFjIKz83w83.py", line 40
- [C0330: bad-continuation] In "user306_k8ruhFjIKz83w83.py" at line 110, column 0: Wrong continued indentation (add 24 spaces). day_input2, year_input3, month_input3, day_input3)) ^ | function "user306_k8ruhFjIKz83w83.py", line 110
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
