-
Notifications
You must be signed in to change notification settings - Fork 0
/
dolar.py
21 lines (19 loc) · 886 Bytes
/
dolar.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
cometa = input("Nombre del comisionista: ")
tc = input("Cuál es la cotización?: ")
ammount = input("Cuantos USD desea cambiar el cliente?: ")
cchica = input("Ingrese la cantidad de dolares cara chica si no hay ninguno ingrese 0: ")
porcentajec = input ("A que porcentaje se tomaran los biletes cara chica? -%: ")
tc_f = float(tc)
ammount_i = int(ammount)
icchica = int(cchica)
carachicaperc = (float(porcentajec)*icchica)/100
totalpesos = tc_f * ammount_i
totalpesoscchica = (totalpesos- (icchica*tc_f)) + (((icchica)- carachicaperc)*tc_f)
def getcot():
if icchica <= 0 :
print(f"""{cometa} realizo una operacion por {ammount_i} a {tc_f:.2f}, el equivalente en pesos es de
{tc_f*ammount_i}""")
else :
print(f"""{cometa} realizo una operación por {ammount_i} a {tc_f:.2f}, el equivalente en pesos es de
{totalpesoscchica}""")
getcot()