Hi this is my shelve entry structure
{
'Birds' : {
'BlueOnes': ["detailsAboutBlueBird"],
'RedOnes' : ["detailsAboutRedBirds"]
}
}
I'm trying to remove only BlueOnes
Below is the code I'm using
s = shelve.open('birds.db')
del s['Birds']['BlueOnes']
But it doesn't seem to work.
Am I doing something wrong o.o?