I did make a dictionary :
{
"PerezHilton": {
"name": "Perez Hilton",
"following": [
"tomCruise",
"katieH",
"NicoleKidman"
],
"location": "Hollywood, California",
"web": "http://www.PerezH...",
"bio": [
"Perez Hilton is the creator and writer of one of the most famous websites",
"in the world. And he also loves music - a lot!"
]
},
"tomCruise": {
"name": "Tom Cruise",
"following": [
"katieH",
"NicoleKidman"
],
"location": "Los Angeles, CA",
"web": "http://www.tomcruise.com",
"bio": [
"Official TomCruise.com crew tweets. We love you guys!",
"Visit us at Facebook!"
]
}
}
I want it to return a string so i add str() to it. But I have no idea how to break it like lines. what I required is :
----------
PerezHilton
name: Perez Hilton
location: Hollywood, California
website: http://www.PerezH...
bio:
Perez Hilton is the creator and writer of one of the most famous websites
in the world. And he also loves music - a lot!
following: ['tomCruise', 'katieH', 'NicoleKidman']
----------
tomCruise
name: Tom Cruise
location: Los Angeles, CA
website: http://www.tomcruise.com
bio:
Official TomCruise.com crew tweets. We love you guys!
Visit us at Facebook!
following: ['katieH', 'NicoleKidman']
----------
should I change it to string and then break it? or break them from dict and take it as a string? btw, I used python 3