I have following input:
{
"symbol": "AAPL",
"exchange": "NASDAQ",
"exchangeSuffix": null,
"exchangeDescription": "Nasdaq All Markets",
"name": "Apple Inc"
}
When I paste it and print it, I get only {
printed.
Since raw_input
is now input
in Python 3.x, I tried to use
from six.moves import input
but it didn't help. So the input is somehow cut off.
My final goal is to remove
"exchange": "NASDAQ",
"exchangeSuffix": null,
"exchangeDescription": "Nasdaq All Markets"
and print the rest.