-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathinterview_template.py
43 lines (29 loc) · 958 Bytes
/
interview_template.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#Please uncomment (Remove the # from) the one line that
#describes your filing status this year.
#status="single"
#status="married filing separately"
#status="married filing jointly"
#status="head of household"
#Will you be itemizing deductions?
itemizing=False
#Are you or your spouse over 65?
over_65=False
spouse_over_65=False
# How many dependent children do you have?
kids=0
# How many dependents over 17 do you have?
dependents=0
# Do you have student loans or education expenses
s_loans=False
# Do you have long-term capital gains or dividends qualified to use the ltgc rate?
cap_gains=False
# Did you receive rents or royalties?
have_rr=False
# Are you self-employed (schedules C and SE)?
self_emp=False
### py1040 options
# Should I print out fields that you left at zero and can be left blank when
# filling in your forms?
show_optional_zeros=False
# Should I print debugging information?
debug=False