-3
I am trying to return database and more functions. Ex:
mongodb = MongoClient(args.ip, int(porta))
database = mongodb.list_database_names()
print (database)
But when the answer comes back, it comes like this
['admin', 'config', 'local']
How can I organize the response? Ex:
admin
config
local
etc....
no brackets, quotes and commas...? Thank you.