for - Schleifen über Listen


#!/usr/bin/python
seq1 = 'abc'
seq2 = (1,2,3)
for x in seq1:
for y in seq2:
print x,y,"\n"