Python Print Dict New Line

print("{" + "\n".join("{!r}: {!r},".format(k, v) for k, v in d.items()) + "}")
ARtemachka