Why is index not starting from zero i.e first element always? At times it goes from from 1 to 0; at times it goes from 0 to 1? i want the index to start from zero always. Kindly help me how to fix this.
Queries={'Q1':'question 1','Q2':'question 2'}
for k,val in Queries.items():
print('key:{} value:{}'.format(k,val))