avlee schrieb: > Hello > > Is it possible to use in python variables with dynamicly created names ? > How ?
In such cases, use a dictionary:
vars = {}
for some_name, some_value in some_values_generating_thing():
vars[some_name] = some_value
Diez
--
http://mail.python.org/mailman/listinfo/python-list
