1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| #! python3
# coding: utf-8
from termcolor import cprint
from math import trunc
employes = {
"Dupond": {
"salaire": 4257.12,
"composition": [],
},
"Durand": {
"salaire": 2024.78,
"composition": [],
},
"Pierre": {
"salaire": 814.36, |