Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. ################# TAX ##########################
  2.  
  3. var1 = int(input('1.Wages, salaries, and tips. This should be shown in box 1 of your Form(s) W-2. Attach your Form(s) W-2. '))
  4.  
  5. var2 = int(input('2. Taxable interest. If the total is over $1,500, you cannot use Form 1040EZ. '))
  6.  
  7. var3 = int(input('3. Unemployment compensation and Alaska Permanent Fund dividends. '))
  8.  
  9. varSum = var1 + var2 + var3
  10.  
  11. print('4. Add lines 1, 2, and 3. This is your adjusted gross income. \n Your adjusted gross income is ', varSum)
  12.  
  13.  
  14. var4 = input('5. If someone can claim you (or your spouse if a joint return) as a dependent, check the applicable box(es) below and enter the amount from the worksheet on back \n Enter Y for your and S for Spouse ')
  15. print(var4)
  16.  
  17.  
  18. if var4 == 'Y' or 'y':
  19. var5 = 10150
  20. if var5 < varSum:
  21. var6 = varSum - var5
  22. print('Subtract line 5 from line 4. If line 5 is larger than line 4, enter -0-. This is your taxable income. ',var6)
  23. elif var4 == 'S' or 's':
  24. var7 = 20300
  25. if var7 < varSum:
  26. var6 = varSum - var5
  27. print('Subtract line 5 from line 4. If line 5 is larger than line 4, enter -0-. This is your taxable income. ',var7)
  28. else:
  29. print('Subtract line 5 from line 4. If line 5 is larger than line 4, enter -0-. This is your taxable income. -0-')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement