Advertisement
Fhernd

variables-conjunto-arbitrario-1.py

Mar 18th, 2018
1,021
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 KB | None | 0 0
  1. registros = [
  2.     ('tipo1', 2, 3, 5),
  3.     ('tipo2', 'x', 'y'),
  4.     ('tipo1', 7, 9, 11)
  5. ]
  6.  
  7. def procesar_tipo1(a, b, c):
  8.     print ('tipo1', a, b, c)
  9.    
  10. def procesar_tipo2(a, b):
  11.     print('tipo2', a, b)
  12.    
  13.  
  14. for tipo, *argumentos in registros:
  15.     if(tipo == 'tipo1'):
  16.         procesar_tipo1(*argumentos)
  17.     if(tipo == 'tipo2'):
  18.         procesar_tipo2(*argumentos)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement