Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- registros = [
- ('tipo1', 2, 3, 5),
- ('tipo2', 'x', 'y'),
- ('tipo1', 7, 9, 11)
- ]
- def procesar_tipo1(a, b, c):
- print ('tipo1', a, b, c)
- def procesar_tipo2(a, b):
- print('tipo2', a, b)
- for tipo, *argumentos in registros:
- if(tipo == 'tipo1'):
- procesar_tipo1(*argumentos)
- if(tipo == 'tipo2'):
- procesar_tipo2(*argumentos)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement