[pyar] Consulta: lógica de las listas Listas

Diego Uribe Gamez diego.uribe.gamez en gmail.com
Vie Dic 2 15:55:14 ART 2011


Bueno, voy a ser mas concreto:

----------------------------------------------------
host = str(cfg_host)
port = int(cfg_port)
addr = (host, port)
----------------------------------------------------

cuando imprimo addr me sale ('186.98.82.000', 3333) de la misma forma que
si imprimo las dos por separado host y port, el problema esta aquí:

Codigo:
----------------------------------------------------
host = Lista[0]
port = Lista[1]
----------------------------------------------------
addr[0] = Lista[0]
addr[1] = Lista[1]
----------------------------------------------------

Salida:
----------------------------------------------------
Traceback (most recent call last):
  File "svr_udp_gps2.py", line 77, in <module>
    host = Lista[0]
IndexError: list index out of range
----------------------------------------------------
Traceback (most recent call last):
  File "svr_udp_gps2.py", line 77, in <module>
    addr[0] = Lista[0]
IndexError: list index out of range
----------------------------------------------------

En cualquiera de los dos casos, no entiendo porque no puedo meter los datos
en una Lista[0] ??


Gracias.
-- 
 *Diego Alonso Uribe Gamez*
------------------------------

*Desarrollador web*

Twitter: @DiegoUG <http://www.twitter.com/DiegoUG>

Google+: http://gplus.to/diegoug
------------------------------
------------ próxima parte ------------
Se ha borrado un adjunto en formato HTML...
URL: <http://listas.python.org.ar/pipermail/pyar/attachments/20111202/4931816c/attachment.html>


More information about the pyar mailing list