key = ['q','w','e','r','t','y','u','i','o','p']
alp = ['a','b','c','d','e','f','g','h','i','j']
in this case, how to print like this
qa, wb, ec, rd, te ..... etc...
i just thought
for k in key:
for a in alp:
print(str(k) + str(a))
but it's wrong of course. it prints just qa qb qc qd .... wa wb wc wd .... etc
so i tried
for k in key[d]:
for a in alp[d]:
print(str(k) + str(a))
d = d+1
but it give me only one
qa