Skip to content

Instantly share code, notes, and snippets.

View wvolkov's full-sized avatar

Vova V wvolkov

View GitHub Profile
@wvolkov
wvolkov / si_plača_2024.py
Created February 22, 2024 20:03
Slovenia Income NET Salary Calculator for a wage worker
import pandas as pd
import numpy as np
ranges = [
    (0, 8755, 0.16),
    (8755, 25750, 0.26),
    (25750, 51500, 0.33),
    (51500, 74160, 0.39),
    (74160, np.inf, 0.5)