This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # from selenium import webdriver | |
| from seleniumwire import webdriver | |
| from selenium.webdriver.common.action_chains import ActionChains | |
| from selenium.webdriver.chrome.options import Options | |
| import time | |
| import os | |
| import calendar | |
| import traceback | |
| import json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pandas as pd | |
| import numpy as np | |
| def calc_income_tax(income): | |
| """income tax calculation in lacs, under new regime | |
| all numbers are in lacs (100_000), and percentages | |
| see https://www.incometax.gov.in/iec/foportal/help/individual/return-applicable-1 | |
| """ | |
| if income > 15: |
OlderNewer