dict = {1:'a','1':'b'}
{{1}} or {{'1'}} should give 'a' and 'b' respectively but it's not working in any case.
is it valid or should use only alphabets for keys?
because I want to make multiplication table for entered number in textbox like for 2
2 x 1 = 2
2 x 2 = 4
.
.
.
2 x 9 =18
2 x 10 = 20