You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Yes.
When the program prompting the user to answer the second question, it states that if only press the Enter key implies 0, but a “ValueError” exception occurs.
Program
CSC256PublicChangeDoc
10/2/2021 11:10pm
Component
C:\Users\Simon\CSC256PublicChangeDoc
Describe the solution you'd like
As the program stated, no exception should be raised when only press the Enter key.
Describe alternatives you've considered
Replace line 9 in the “full_retirement_calc.py” file with the following code:
birth_month = str(input(“Enter the month of birth ( implies 0)”))
if birth_month == ‘ ‘:
birth_month = 0
Additional context
Priority
TBD
State
Open
Assigned
Unassigned
Cost
TBD
The text was updated successfully, but these errors were encountered:
Feature request 1
Is your feature request related to a problem? Please describe.
Yes.
When the program prompting the user to answer the second question, it states that if only press the Enter key implies 0, but a “ValueError” exception occurs.
Program
CSC256PublicChangeDoc
10/2/2021 11:10pm
Component
C:\Users\Simon\CSC256PublicChangeDoc
Describe the solution you'd like
As the program stated, no exception should be raised when only press the Enter key.
Describe alternatives you've considered
Replace line 9 in the “full_retirement_calc.py” file with the following code:
birth_month = str(input(“Enter the month of birth ( implies 0)”))
if birth_month == ‘ ‘:
birth_month = 0
Additional context
Priority
TBD
State
Open
Assigned
Unassigned
Cost
TBD
The text was updated successfully, but these errors were encountered: