Advertisement
pjmakey2

Untitled

May 13th, 2020
1,702
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.35 KB | None | 0 0
  1. reemplazos = [
  2.     ('AUXILIAR', 'AUX'),
  3.     ('GERENCIA', ''),
  4.     ('CONTABILIDAD', ''),
  5.     (' DE ', ''),
  6.     ('CONTABLE', ''),
  7.     ('ADMINISTRATIVO', ''),
  8.     ('FINANZAS', ''),
  9.     ('VENTAS', ''),
  10. ]
  11. puesto = 'AUXILIAR DE CONTABILIDAD ADMINISTRATIVO DE FINANZAS'
  12. for r, por in reemplazos:
  13.     puesto = puesto.replace(r, por)
  14. print puesto.strip()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement