I want to print values from a dictionary without any spacing.
This is a test of my code:
d = {}
d["char12"] = "test"
d["char22"] = "test"
print d["char12"],
print d["char22"]
the output is
test test
but i need it to be:
testtest
is there a way to remove that automatic spacing?
Thanks!