-
Notifications
You must be signed in to change notification settings - Fork 205
Description
Is your feature request related to a problem? Please describe.
Yes.
-
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
When the program prompts the birth month, it states that if only press the Enter key implies 0, but a “ValueError” exception occurs. -
A Feature might be a useful extension of the program as it is. Ex. Showing negative numbers in red would be good on the profit/loss screen.
Program
CSC256PublicChangeDoc
10/02/2021 10:30pm
Component
Full_retirement_age_calculator_app.py
Describe the solution you'd like
As the program stated, no exception should be raised when only press the Enter key and return the retirement age and month.
Describe alternatives you've considered
Replace line 9 in the “full_retirement_age_calculator_app.py” file with the following code:
birth_month = str(input(“Enter the month of birth ( implies 0)”))
if birth_month == ‘ ‘:
birth_month = 0
Priority
TBD
State
Open
Assigned
Unassigned
Cost
TBD
