I am using python sqlite to search on specific match in a certain column, once found a match, need to store the other columns' values in a python variables for further use. what I can't do is to store the data from the select query in list
for z in range(0,y):
for m,n in cr.execute ("select English,Tagger from POS where Arabic=?",(x[z],)):
h[z]=m
f[z]=n
both m and n variables returning correct values in each iteration in the for loop but I can't store them in both h and f for further use
Please describe the problem in more detail.