我也找AI幫忙寫了個存401k/Roth401k比例的小蟒蛇

本文內容已被 [ CatcherInTheRye ] 在 2024-01-12 08:34:09 編輯過。如有問題,請報告版主或論壇管理刪除.

然後稍修改了下。自己要手動算這個挺麻煩。

假定你公司的401k計劃是最多match到6% of your salary based on your contribution.

目標是 (1)最大化拿到公司的match (2)之後最大化Roth contribution

跑程序時輸入 (1)公司match的比例,一般是50%或100%,(2)你的年薪

def calculate_401k_contributions(annual_salary, company_match_percentage=0.5, max_company_match_percentage=0.06, total_401k_limit=23000):
    max_pre_tax_contribution = annual_salary * max_company_match_percentage
    max_pre_tax_contribution = min(total_401k_limit, max_pre_tax_contribution)
    company_match = max_pre_tax_contribution * company_match_percentage
    remaining_pre_tax_limit = total_401k_limit - company_match
    remaining_pre_tax_limit = max(0, remaining_pre_tax_limit)
    roth_401k_contribution = min(remaining_pre_tax_limit, total_401k_limit - max_pre_tax_contribution)
    pre_tax_contribution_to_maximize_match = min(max_pre_tax_contribution, total_401k_limit - roth_401k_contribution)
    remaining_pre_tax_contribution = max_pre_tax_contribution - pre_tax_contribution_to_maximize_match
    additional_roth_401k_contribution = min(remaining_pre_tax_contribution, roth_401k_contribution)
    pre_tax_contribution = pre_tax_contribution_to_maximize_match + additional_roth_401k_contribution
    return pre_tax_contribution, roth_401k_contribution

# usage
company_match_percentage = input("Enter your company 401k match % (e.g. 50%): ")
if company_match_percentage.isdigit():
    company_match_percentage = float(company_match_percentage)
    if company_match_percentage > 1:
        company_match_percentage = company_match_percentage / 100
else:
    company_match_percentage = float(company_match_percentage.strip('%')) / 100.0
annual_salary = float(input("Enter your annual salary: "))
pre_tax, roth = calculate_401k_contributions(annual_salary, company_match_percentage)

print(f"Annual Salary: ${annual_salary}")
print(f"Pre-tax 401k Contribution: ${pre_tax:.2f}")
print(f"Roth 401k Contribution: ${roth:.2f}")

所有跟帖: 

可以粘貼到這裏run -CatcherInTheRye- 給 CatcherInTheRye 發送悄悄話 (56 bytes) () 01/12/2024 postreply 08:26:36

3 -dancinghorse- 給 dancinghorse 發送悄悄話 (0 bytes) () 01/12/2024 postreply 08:43:06

人家這是用做私人用途 分享給大家而已 不存在損失不損失損失。 很多人也不知道怎麽用的。 -nilabonita- 給 nilabonita 發送悄悄話 (117 bytes) () 01/12/2024 postreply 09:01:24

是的,就這小程序我自己還是花了30分鍾測試修改 -CatcherInTheRye- 給 CatcherInTheRye 發送悄悄話 (146 bytes) () 01/12/2024 postreply 09:04:17

你這個是一維計算,做二維計算也是可行的,比如圖像處理,做三維計算漏洞會很大,就算芯片再快 -dancinghorse- 給 dancinghorse 發送悄悄話 (0 bytes) () 01/12/2024 postreply 10:12:04

說明AI自動駕駛還任重道遠還不能實用? -CatcherInTheRye- 給 CatcherInTheRye 發送悄悄話 (0 bytes) () 01/12/2024 postreply 10:52:26

AI 寫程序必須提供反饋,你水平高他也會寫的更好,不然他會糊弄你。 -va168- 給 va168 發送悄悄話 va168 的博客首頁 (0 bytes) () 01/12/2024 postreply 09:49:22

嗯,garbage in garbage out -CatcherInTheRye- 給 CatcherInTheRye 發送悄悄話 (0 bytes) () 01/12/2024 postreply 10:50:40

為什麽不是全部23000到Roth 401? -NYU1065- 給 NYU1065 發送悄悄話 (38 bytes) () 01/13/2024 postreply 07:36:22

請您先登陸,再發跟帖!