how to print a dictionary in python without the brackets code example
Example: how to print a list without the brackets in python
names = ["jeff", "Mike", "Mario"]
#if you want to print in seperate lines
for x in range(len(names)):
print(names[x])
#If you want to print in same line
for x in range(len(names)):
print(names[x], end=" ")