hi all, I want to create a code with two lists like this  code = ['234', '333' 
.............. ] liste = []a = 0 while a<999 :a+=1liste.append(a) now I want to 
create this sample :  the first element of codes list is 234 than the all 
elements of liste are 1,2,3 ...... 9999 now I want to this  2341, 2342, 2343, 
.................... 234999 when this finishes after the second element of code 
begins 3331,3332, 3333, ....................333999  what can I do for this? thx 
...                                        
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to