Hi I am new to Python and I am struggling regarding how to print dictionary.
I have a dictionary as shown below.
dictionary = {a:1,b:1,c:2}
How can I print dictionary in one line as shown below?
a1b1c2
I want to print keys and values in one line but could not figure out by myself.
I would appreciate your advice!