Sorry for the basic question. But I cannot find a solution of this problem.
I'd like to print dictionary value at the Django terminal.
Here, I have a dictionary c={'code': '12'}
I just want to print 12 at the terminal But when I enter print(c.values()) in the terminal, nothing appears.
I think the latter ' is the problem. What should I do?